| 123456789101112131415161718192021 |
- package enterprisepersonnelstructure
- import (
- "time"
- )
- type Oilenterprisepersonnelstructure struct {
- Id int `xorm:"not null pk autoincr INT(10)"`
- Suppliercertid int `xorm:"not null comment('供方准入证书信息表ID') INT(10)"`
- Mainequipment string `xorm:"comment('主要设备名称') VARCHAR(100)"`
- Specifications string `xorm:"not null default '0' comment('规格型号') VARCHAR(10)"`
- Number string `xorm:"not null default '0' comment('数量') CHAR(10)"`
- 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)"`
- }
|