settle_account_detail.go 1.1 KB

123456789101112131415161718192021
  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 int `orm:"UnitPrice" json:"unitPrice"` // 计费单价
  13. PaymentType string `orm:"PaymentType" json:"paymentType"` // 支出类型 1正常支出 2违约支出
  14. PaymentAccount string `orm:"PaymentAccount" json:"paymentAccount"` // 支出金额
  15. CreateUserId int `orm:"CreateUserId" json:"createUserId"` //
  16. CreateBy string `orm:"CreateBy" json:"createBy"` //
  17. CreateOn *gtime.Time `orm:"CreateOn" json:"createOn"` //
  18. }