package repository import ( "wails-app/internal/dao" "wails-app/internal/global" ) type PaymentRepository struct{} func (r *PaymentRepository) Create(record *dao.PaymentRecord) error { return global.GVA_DB.Create(record).Error }