| 123456789101112131415161718192021 |
- // ==========================================================================
- // 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 int `orm:"UnitPrice" json:"unitPrice"` // 计费单价
- PaymentType string `orm:"PaymentType" json:"paymentType"` // 支出类型 1正常支出 2违约支出
- PaymentAccount string `orm:"PaymentAccount" json:"paymentAccount"` // 支出金额
- CreateUserId int `orm:"CreateUserId" json:"createUserId"` //
- CreateBy string `orm:"CreateBy" json:"createBy"` //
- CreateOn *gtime.Time `orm:"CreateOn" json:"createOn"` //
- }
|