6
0

settle_account_main.go 1.7 KB

12345678910111213141516171819202122232425262728
  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. // SettleAccountMain is the golang structure for table settle_account_main.
  9. type SettleAccountMain struct {
  10. Id int `orm:"Id,primary" json:"id"` // 主键
  11. BillId int `orm:"BillId" json:"billId"` // 账单Id
  12. AppointId int `orm:"AppointId" json:"appointId"` // 预约Id
  13. AppointUserId int `orm:"AppointUserId" json:"appointUserId"` // 预约人Id
  14. AppointUser string `orm:"AppointUser" json:"appointUser"` // 预约人
  15. MainUserId int `orm:"MainUserId" json:"mainUserId"` // 主用户Id
  16. MainUser string `orm:"MainUser" json:"mainUser"` // 主用户
  17. FeeType string `orm:"FeeType" json:"feeType"` // 费用类型 1机时计费 2样本计费
  18. SettleStatus string `orm:"SettleStatus" json:"settleStatus"` // 结算状态 1未确认 2已确认 3已结账
  19. TotalPrice int `orm:"TotalPrice" json:"totalPrice"` // 结算总价
  20. SettleTime *gtime.Time `orm:"SettleTime" json:"settleTime"` // 结算时间
  21. CreateUserId int `orm:"CreateUserId" json:"createUserId"` //
  22. CreateBy string `orm:"CreateBy" json:"createBy"` //
  23. CreateOn *gtime.Time `orm:"CreateOn" json:"createOn"` //
  24. DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` // 删除时间
  25. }