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