|
|
@@ -0,0 +1,47 @@
|
|
|
+package limsreportben
|
|
|
+
|
|
|
+import (
|
|
|
+ "time"
|
|
|
+)
|
|
|
+
|
|
|
+type LimsReportBenModel struct {
|
|
|
+ Id int `xorm:"not null pk autoincr INT(10)"`
|
|
|
+ EId int `xorm:"comment('委托单ID') INT(10)"`
|
|
|
+ TaskBalanceId int `xorm:"comment('任务分配表ID') INT(10)"`
|
|
|
+ DataEntryId int `xorm:"comment('数据记录表ID') INT(10)"`
|
|
|
+ MeterRange string `xorm:"comment('量程(*10-6mol/mol)') VARCHAR(255)"`
|
|
|
+ MeasurementRange string `xorm:"comment('测量范围(*10-6mol/mol)') VARCHAR(255)"`
|
|
|
+ DetectBasis string `xorm:"comment('检测依据') VARCHAR(500)"`
|
|
|
+ FaceCheck string `xorm:"comment('外观及结构') VARCHAR(50)"`
|
|
|
+ FlagCheck string `xorm:"comment('标志标识') VARCHAR(50)"`
|
|
|
+ ElectrifyCheck string `xorm:"comment('通电检查') VARCHAR(50)"`
|
|
|
+ Insulation string `xorm:"comment('绝缘电阻') VARCHAR(50)"`
|
|
|
+ RelativeHumanity string `xorm:"comment('相对湿度') VARCHAR(50)"`
|
|
|
+ ManuCompany string `xorm:"comment('制造单位') VARCHAR(255)"`
|
|
|
+ Spec string `xorm:"comment('规格/型号') VARCHAR(255)"`
|
|
|
+ FactoryNum string `xorm:"comment('出厂编号') VARCHAR(255)"`
|
|
|
+ AudibleAlarm string `xorm:"comment('声光报警') VARCHAR(255)"`
|
|
|
+ AlarmConcentration string `xorm:"comment('报警浓度值') VARCHAR(255)"`
|
|
|
+ InstrumentLevel string `xorm:"comment('仪器等级') VARCHAR(255)"`
|
|
|
+ DielecStrength string `xorm:"comment('绝缘强度') VARCHAR(255)"`
|
|
|
+ TestDepartId int `xorm:"INT(11)"` //受检单位
|
|
|
+ TestDepart string `xorm:"VARCHAR(100)"` //受检单位
|
|
|
+ PositionCheckId int `xorm:"INT(11)"` //检测地点
|
|
|
+ PositionCheck string `xorm:"VARCHAR(100)"`
|
|
|
+ Instrument1 string `xorm:"VARCHAR(255)"` //设备1
|
|
|
+ Instrument2 string `xorm:"VARCHAR(255)"`
|
|
|
+ Instrument3 string `xorm:"VARCHAR(255)"`
|
|
|
+ Temperature string `xorm:"VARCHAR(50)"`
|
|
|
+ StandardDesc string `xorm:"VARCHAR(500)"`
|
|
|
+ CustomerId int `xorm:"INT(10)"`
|
|
|
+ CustomerName string `xorm:VARCHAR(50)`
|
|
|
+ CheckDate time.Time `xorm:"DATETIME"`
|
|
|
+ Remark string `xorm:"comment('备注') VARCHAR(255)"`
|
|
|
+ CreateUserId int `xorm:"INT(11)"`
|
|
|
+ CreateOn time.Time `xorm:"DATETIME"`
|
|
|
+ CreateBy string `xorm:"VARCHAR(50)"`
|
|
|
+ ModifiedOn time.Time `xorm:"DATETIME"`
|
|
|
+ ModifiedUserId int `xorm:"INT(11)"`
|
|
|
+ ModifiedBy string `xorm:"VARCHAR(50)"`
|
|
|
+}
|
|
|
+
|