settle_account_bill.go 2.2 KB

1234567891011121314151617181920212223242526272829
  1. // ==========================================================================
  2. // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
  3. // ==========================================================================
  4. package internal
  5. import (
  6. "github.com/gogf/gf/os/gtime"
  7. )
  8. // SettleAccountBill is the golang structure for table settle_account_bill.
  9. type SettleAccountBill struct {
  10. Id int `orm:"Id,primary" json:"id"` // 主键
  11. Code string `orm:"Code" json:"code"` // 账单号
  12. TotalCount int `orm:"TotalCount" json:"totalCount"` // 账单总额
  13. SettleTime *gtime.Time `orm:"SettleTime" json:"settleTime"` // 结算时间
  14. StartDate *gtime.Time `orm:"StartDate" json:"startDate"` // 账单开始时间
  15. EndDate *gtime.Time `orm:"EndDate" json:"endDate"` // 账单结束时间
  16. Status string `orm:"Status" json:"status"` // 账单状态 1待确认 2待核销 4已核销
  17. ActualVerificationDate *gtime.Time `orm:"ActualVerificationDate" json:"actualVerificationDate"` // 实际核销时间
  18. ActualVerificationUser int `orm:"ActualVerificationUser" json:"actualVerificationUser"` // 实际核销人
  19. VerificationUserId int `orm:"VerificationUserId" json:"verificationUserId"` // 核销人Id
  20. VerificationUser int `orm:"VerificationUser" json:"verificationUser"` // 核销人
  21. VerificationDate *gtime.Time `orm:"VerificationDate" json:"verificationDate"` // 完成核销时间
  22. CreateUserId int `orm:"CreateUserId" json:"createUserId"` //
  23. CreateBy string `orm:"CreateBy" json:"createBy"` //
  24. CreateOn *gtime.Time `orm:"CreateOn" json:"createOn"` //
  25. DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` // 删除时间
  26. }