settle_account_bill.go 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 float64 `orm:"TotalCount" json:"total_count"` // 计费总额
  13. SettleTime *gtime.Time `orm:"SettleTime" json:"settle_time"` // 结算时间
  14. StartDate *gtime.Time `orm:"StartDate" json:"start_date"` // 账单开始时间
  15. EndDate *gtime.Time `orm:"EndDate" json:"end_date"` // 账单结束时间
  16. Status string `orm:"Status" json:"status"` // 账单状态 0未确认 1已确认 2已结算 3已扣款
  17. ActualVerificationDate *gtime.Time `orm:"ActualVerificationDate" json:"actual_verification_date"` // 实际核销时间
  18. ActualVerificationUser int `orm:"ActualVerificationUser" json:"actual_verification_user"` // 实际核销人
  19. VerificationUserId int `orm:"VerificationUserId" json:"verification_user_id"` // 核销人Id
  20. VerificationUser int `orm:"VerificationUser" json:"verification_user"` // 核销人
  21. VerificationDate *gtime.Time `orm:"VerificationDate" json:"verification_date"` // 完成核销时间
  22. CreateUserId int `orm:"CreateUserId" json:"create_user_id"` //
  23. CreateBy string `orm:"CreateBy" json:"create_by"` //
  24. CreateOn *gtime.Time `orm:"CreateOn" json:"create_on"` //
  25. DeletedAt *gtime.Time `orm:"DeletedAt" json:"deleted_at"` // 删除时间
  26. MainUserId int `orm:"MainUserId" json:"main_user_id"` // 主用户Id
  27. MainUser string `orm:"MainUser" json:"main_user"` // 主用户
  28. AccountId int `orm:"AccountId" json:"account_id"` // 经费账号Id
  29. PaymentDueDate *gtime.Time `orm:"PaymentDueDate" json:"payment_due_date"` // 付款截止日期
  30. SettlementDateUserId int `orm:"SettlementDateUserId" json:"settlement_date_user_id"` // 结算人Id
  31. SettlementDateUser int `orm:"SettlementDateUser" json:"settlement_date_user"` // 结算人
  32. SettlementDate *gtime.Time `orm:"SettlementDate" json:"settlement_date"` // 结算时间
  33. DeductMoneyUserId int `orm:"DeductMoneyUserId" json:"deduct_money_user_id"` // 扣款人Id
  34. DeductMoneyUser int `orm:"DeductMoneyUser" json:"deduct_money_user"` // 扣款人
  35. DeductMoneyDate *gtime.Time `orm:"DeductMoneyDate" json:"deduct_money_date"` // 扣款时间
  36. Remark string `orm:"Remark" json:"remark"` // 备注
  37. UpdateUserId int `orm:"UpdateUserId" json:"update_user_id"` // 更新者ID
  38. UpdateBy string `orm:"UpdateBy" json:"update_by"` // 更新者
  39. UpdateOn *gtime.Time `orm:"UpdateOn" json:"update_on"` // 更新时间
  40. }