fix
wangpengfei
2023-08-11 460e591f215fe64d6a097ff4b1ee836d181298ac
model/salesRefund.go
@@ -3,7 +3,6 @@
import (
   "aps_crm/pkg/mysqlx"
   "gorm.io/gorm"
   "time"
)
type (
@@ -12,7 +11,7 @@
      ClientId     int        `json:"clientId" gorm:"column:client_id;type:int;comment:客户id"`
      Number       string     `json:"number" gorm:"column:number;type:varchar(255);comment:退款单号"`
      MemberId     int        `json:"memberId" gorm:"column:member_id;type:int;comment:负责人id"`
      RefundDate   *time.Time `json:"refundDate" gorm:"column:refund_date;type:datetime;comment:退款日期"`
      RefundDate   *CustomTime `json:"refundDate" gorm:"column:refund_date;type:datetime;comment:退款日期"`
      RefundMethod string     `json:"refundMethod" gorm:"column:refund_method;type:varchar(255);comment:退款方式"`
      AccountId    int        `json:"accountId" gorm:"column:account_id;type:int;comment:账户"`
      IsInvoice    int        `json:"isInvoice" gorm:"column:is_invoice;type:int;comment:是否开票"`