|
|
@@ -0,0 +1,24 @@
|
|
|
+package threeyearsperformance
|
|
|
+
|
|
|
+import (
|
|
|
+ "time"
|
|
|
+)
|
|
|
+
|
|
|
+type Oilthreeyearsperformance struct {
|
|
|
+ Id int `xorm:"not null pk autoincr INT(10)"`
|
|
|
+ Suppliercertid int `xorm:"not null comment('供方准入证书信息表ID') INT(10)"`
|
|
|
+ Projectname string `xorm:"comment('主要设备名称') VARCHAR(100)"`
|
|
|
+ Bearcontent string `xorm:"not null default '0' comment('承担项目主要内容') VARCHAR(100)"`
|
|
|
+ Ownerunit string `xorm:"not null default '0' comment('业主单位') VARCHAR(100)"`
|
|
|
+ Starttime time.Time `xorm:"comment('起止时间') DATETIME"`
|
|
|
+ Stoptime time.Time `xorm:"comment('起止时间') DATETIME"`
|
|
|
+ Tudge string `xorm:"not null default '0' comment('是否发生过质量、安全、环境事故') VARCHAR(20)"`
|
|
|
+ Remark string `xorm:"comment('备注') VARCHAR(500)"`
|
|
|
+ Isdelete int `xorm:"default 0 comment('删除状态,0正常,1已删除') INT(10)"`
|
|
|
+ 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)"`
|
|
|
+}
|