package contractEvaluationOrder import ( "time" ) type OilContractEvaluationOrder struct { Id int `json:"Id" xorm:"not null pk autoincr INT(11) 'Id'"` ContractId int `json:"ContractId" xorm:"not null comment('合同表Id') INT(11) 'ContractId'"` ReviewId int `json:"ReviewId" xorm:"comment('日常评价审批id') INT(11) 'ReviewId'"` UnitId int `json:"AuditId" xorm:"comment('审核工单接收部门id') INT(11) 'AuditId'"` UnitBy string `json:"AuditBy" xorm:"comment('接收部门') VARCHAR(50) 'AuditBy'"` IsConfirm int `json:"IsConfirm" xorm:"default 0 comment('是否确认 0未确认,1已确认') INT(11) 'IsConfirm'"` CreateOn time.Time `json:"CreateOn" xorm:"DATETIME 'CreateOn'"` CreateUserId int `json:"CreateUserId" xorm:"INT(11) 'CreateUserId'"` CreateBy string `json:"CreateBy" xorm:"VARCHAR(50) 'CreateBy'"` ModifiedOn time.Time `json:"ModifiedOn" xorm:"DATETIME 'ModifiedOn'"` ModifiedUserId int `json:"ModifiedUserId" xorm:"INT(11) 'ModifiedUserId'"` ModifiedBy string `json:"ModifiedBy" xorm:"default '1' VARCHAR(50) 'ModifiedBy'"` }