| 12345678910111213141516171819202122232425262728 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // SettleAccountMain is the golang structure for table settle_account_main.
- type SettleAccountMain struct {
- Id int `orm:"Id,primary" json:"id"` // 主键
- BillId int `orm:"BillId" json:"billId"` // 账单Id
- AppointId int `orm:"AppointId" json:"appointId"` // 预约Id
- AppointUserId int `orm:"AppointUserId" json:"appointUserId"` // 预约人Id
- AppointUser string `orm:"AppointUser" json:"appointUser"` // 预约人
- MainUserId int `orm:"MainUserId" json:"mainUserId"` // 主用户Id
- MainUser string `orm:"MainUser" json:"mainUser"` // 主用户
- FeeType string `orm:"FeeType" json:"feeType"` // 费用类型 1机时计费 2样本计费
- SettleStatus string `orm:"SettleStatus" json:"settleStatus"` // 结算状态 1未确认 2已确认 3已结账
- TotalPrice int `orm:"TotalPrice" json:"totalPrice"` // 结算总价
- SettleTime *gtime.Time `orm:"SettleTime" json:"settleTime"` // 结算时间
- 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"` // 删除时间
- }
|