6
0

settle_account_detail.go 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. // SettleAccountDetail is the golang structure for table settle_account_detail.
  9. type SettleAccountDetail struct {
  10. Id int `orm:"Id,primary" json:"id"` // 主键
  11. Pid int `orm:"pid" json:"pid"` // 结算明细主表Id
  12. UnitPrice float64 `orm:"UnitPrice" json:"unit_price"` // 计费单价
  13. ActuralMinutes string `orm:"ActuralMinutes" json:"actural_minutes"` // 实际机时(分钟)
  14. Minutes string `orm:"Minutes" json:"minutes"` // 计费时长(分钟)
  15. PaymentType string `orm:"PaymentType" json:"payment_type"` // 计费类型:0计时收费;1违约收费;2辅助收费
  16. PaymentAccount float64 `orm:"PaymentAccount" json:"payment_account"` // 费用
  17. CreateUserId int `orm:"CreateUserId" json:"create_user_id"` //
  18. CreateBy string `orm:"CreateBy" json:"create_by"` //
  19. CreateOn *gtime.Time `orm:"CreateOn" json:"create_on"` //
  20. BillId int `orm:"BillId" json:"bill_id"` // 账单Id
  21. MainUserId int `orm:"MainUserId" json:"main_user_id"` // 主用户Id
  22. MainUser string `orm:"MainUser" json:"main_user"` // 主用户
  23. AttachUserId int `orm:"AttachUserId" json:"attach_user_id"` // 从用户Id
  24. AttachUser string `orm:"AttachUser" json:"attach_user"` // 从用户
  25. Data1 string `orm:"Data1" json:"data_1"` // 备用字段1
  26. Data2 string `orm:"Data2" json:"data_2"` // 备用字段2
  27. Data3 string `orm:"Data3" json:"data_3"` // 备用字段3
  28. Data4 string `orm:"Data4" json:"data_4"` // 备用字段4
  29. Data5 string `orm:"Data5" json:"data_5"` // 备用字段5
  30. Remark string `orm:"Remark" json:"remark"` // 备注
  31. UpdateUserId int `orm:"UpdateUserId" json:"update_user_id"` // 更新者ID
  32. UpdateBy string `orm:"UpdateBy" json:"update_by"` // 更新者
  33. UpdateOn *gtime.Time `orm:"UpdateOn" json:"update_on"` // 更新时间
  34. }