package annualaudit import ( "time" ) type OilAnnualAudit struct { Id int `xorm:"not null pk autoincr INT(10)"` RecUnitId string `xorm:"comment('推荐单位编码') VARCHAR(10)"` CerId string `xorm:"comment('准入ID') INT(10)"` AccessCardNo string `xorm:"comment('准入证号') VARCHAR(50)"` SupplierTypeName string `xorm:"comment('准入类别') VARCHAR(50)"` SupplierName string `xorm:"comment('企业名称') VARCHAR(50)"` SupplierId int `xorm:"comment('企业Id') INT(10)"` Num string `xorm:"comment('序号') VARCHAR(50)"` ProjectName string `xorm:"comment('工程项目名称') VARCHAR(50)"` Performance string `xorm:"comment('履约执行情况') VARCHAR(50)"` WorkRange string `xorm:"comment('准入范围') VARCHAR(50)"` Status int `xorm:"comment('状态标识') INT(10)"` BackReason string `xorm:"comment('退回原因') VARCHAR(255)"` ApplyTime time.Time `xorm:"comment('年审日期') DATETIME"` AuditDate time.Time `xorm:"comment('审核日期') DATETIME"` WorkflowId string `xorm:"comment('工作流ID') VARCHAR(50)"` EnterUserId int `xorm:"comment('录入员ID') INT(10)"` EnterUserName string `xorm:"comment('录入员') VARCHAR(50)"` EnterUserTel string `xorm:"comment('录入员电话') VARCHAR(50)"` SCR string `xorm:"comment('SCR') VARCHAR(50)"` SCRQ string `xorm:"comment('SCRQ') VARCHAR(50)"` SCYJ string `xorm:"comment('SCYJ') VARCHAR(50)"` SCJG string `xorm:"comment('SCJG') VARCHAR(50)"` SPR string `xorm:"comment('SPR') VARCHAR(50)"` SPRQ string `xorm:"comment('SPRQ') VARCHAR(50)"` SPYJ string `xorm:"comment('SPYJ') VARCHAR(50)"` SPJG string `xorm:"comment('SPJG') VARCHAR(50)"` CreateOn time.Time `xorm:"DATETIME"` CreateUserId int `xorm:"INT(10)"` CreateBy string `xorm:"VARCHAR(50)"` ModifiedOn time.Time `xorm:"DATETIME"` ModifiedUserId int `xorm:"INT(10)"` ModifiedBy string `xorm:"VARCHAR(50)"` } type Suppliername struct { Id int SupplierName string }