| 12345678910111213141516171819202122232425262728293031323334353637 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // SettleAccountDetail is the golang structure for table settle_account_detail.
- type SettleAccountDetail struct {
- Id int `orm:"Id,primary" json:"id"` // 主键
- Pid int `orm:"pid" json:"pid"` // 结算明细主表Id
- UnitPrice float64 `orm:"UnitPrice" json:"unit_price"` // 计费单价
- ActuralMinutes string `orm:"ActuralMinutes" json:"actural_minutes"` // 实际机时(分钟)
- Minutes string `orm:"Minutes" json:"minutes"` // 计费时长(分钟)
- PaymentType string `orm:"PaymentType" json:"payment_type"` // 计费类型:0计时收费;1违约收费;2辅助收费
- PaymentAccount float64 `orm:"PaymentAccount" json:"payment_account"` // 费用
- CreateUserId int `orm:"CreateUserId" json:"create_user_id"` //
- CreateBy string `orm:"CreateBy" json:"create_by"` //
- CreateOn *gtime.Time `orm:"CreateOn" json:"create_on"` //
- BillId int `orm:"BillId" json:"bill_id"` // 账单Id
- MainUserId int `orm:"MainUserId" json:"main_user_id"` // 主用户Id
- MainUser string `orm:"MainUser" json:"main_user"` // 主用户
- AttachUserId int `orm:"AttachUserId" json:"attach_user_id"` // 从用户Id
- AttachUser string `orm:"AttachUser" json:"attach_user"` // 从用户
- Data1 string `orm:"Data1" json:"data_1"` // 备用字段1
- Data2 string `orm:"Data2" json:"data_2"` // 备用字段2
- Data3 string `orm:"Data3" json:"data_3"` // 备用字段3
- Data4 string `orm:"Data4" json:"data_4"` // 备用字段4
- Data5 string `orm:"Data5" json:"data_5"` // 备用字段5
- 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"` // 更新时间
- }
|