| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- // ==========================================================================
- // 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 float64 `orm:"TotalCount" json:"total_count"` // 计费总额(弃用,改为实时查询)
- SettleTime *gtime.Time `orm:"SettleTime" json:"settle_time"` // 结算时间(弃用)
- StartDate *gtime.Time `orm:"StartDate" json:"start_date"` // 账单开始时间
- EndDate *gtime.Time `orm:"EndDate" json:"end_date"` // 账单结束时间
- Status string `orm:"Status" json:"status"` // 账单状态 0未确认 1已确认 2已结算 3已扣款
- ActualVerificationDate *gtime.Time `orm:"ActualVerificationDate" json:"actual_verification_date"` // 实际核销时间
- ActualVerificationUser int `orm:"ActualVerificationUser" json:"actual_verification_user"` // 实际核销人
- VerificationUserId int `orm:"VerificationUserId" json:"verification_user_id"` // 账单确认人Id
- VerificationUser string `orm:"VerificationUser" json:"verification_user"` // 账单确认人
- VerificationDate *gtime.Time `orm:"VerificationDate" json:"verification_date"` // 账单确认时间
- CreateUserId int `orm:"CreateUserId" json:"create_user_id"` //
- CreateBy string `orm:"CreateBy" json:"create_by"` //
- CreateOn *gtime.Time `orm:"CreateOn" json:"create_on"` //
- DeletedAt *gtime.Time `orm:"DeletedAt" json:"deleted_at"` // 删除时间
- MainUserId int `orm:"MainUserId" json:"main_user_id"` // 主用户Id
- MainUser string `orm:"MainUser" json:"main_user"` // 主用户
- AccountId int `orm:"AccountId" json:"account_id"` // 经费账号Id
- PaymentDueDate *gtime.Time `orm:"PaymentDueDate" json:"payment_due_date"` // 付款截止日期
- SettleUserId int `orm:"SettleUserId" json:"settle_user_id"` // 结算人Id
- SettleUser string `orm:"SettleUser" json:"settle_user"` // 结算人
- SettleDate *gtime.Time `orm:"SettleDate" json:"settle_date"` // 结算时间
- DeductMoneyUserId int `orm:"DeductMoneyUserId" json:"deduct_money_user_id"` // 扣款人Id
- DeductMoneyUser string `orm:"DeductMoneyUser" json:"deduct_money_user"` // 扣款人
- DeductMoneyDate *gtime.Time `orm:"DeductMoneyDate" json:"deduct_money_date"` // 扣款时间
- Remark string `orm:"Remark" json:"remark"` // 备注
- UpdateUserId int `orm:"UpdateUserId" json:"update_user_id"` // 更新者ID
- UpdateBy string `orm:"UpdateBy" json:"update_by"` // 更新者
- UpdateOn *gtime.Time `orm:"UpdateOn" json:"update_on"` // 更新时间
- }
|