| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- package limsreportpistonpumpunit
- import "time"
- type LimsReportPistonPumpUnit struct {
- Id int `xorm:"not null pk autoincr INT(10)"`
- EId int `xorm:"comment('委托单ID') INT(11)"`
- TaskBalanceId int `xorm:"comment('任务分配表ID') INT(11)"`
- DataEntryId int `xorm:"comment('数据记录表ID') INT(11)"`
- TestDepartId int `xorm:"comment('受检单位ID') INT(11)"`
- InstalPositionId int `xorm:"comment('安装位置ID') INT(11)"`
- CreateReportStatus int `xorm:"comment('报告生成状态') INT(11)"`
- InstalPosition string `xorm:"comment('安装位置') VARCHAR(100)"`
- TestDepart string `xorm:"comment('受检单位') VARCHAR(100)"`
- DeviceName string `xorm:"comment('设备名称及编号') VARCHAR(50)"`
- LiquidType string `xorm:"comment('液体类型') VARCHAR(10)"`
- SectionMonitor string `xorm:"comment('节监通知号') VARCHAR(50)"`
- Model1 string `xorm:"comment('泵铭牌型号') VARCHAR(50)"`
- Flow1 float64 `xorm:"comment('泵流量') DECIMAL(10,3)"`
- Lift1 float64 `xorm:"comment('泵扬程') DECIMAL(10,3)"`
- ShaftPower1 float64 `xorm:"comment('泵轴功率') DECIMAL(10,3)"`
- RushTimes float64 `xorm:"comment('冲次') DECIMAL(10,3)"`
- Efficiency1 float64 `xorm:"comment('泵效率') DECIMAL(10,3)"`
- RatedNoloadPower1 string `xorm:"comment('泵制造厂') VARCHAR(50)"`
- Model2 string `xorm:"comment('电动机铭牌型号') VARCHAR(255)"`
- MotorPower float64 `xorm:"comment('电动机功率') DECIMAL(10,3)"`
- MotorVoltage float64 `xorm:"comment('电动机电压') DECIMAL(10,3)"`
- MotorCurrent float64 `xorm:"comment('电动机电流') DECIMAL(10,3)"`
- Speed2 float64 `xorm:"comment('电动机转速') DECIMAL(10,3)"`
- Efficiency2 float64 `xorm:"comment('电动机效率') DECIMAL(10,3)"`
- RatedNoloadPower2 string `xorm:"comment('电动机制造厂') VARCHAR(50)"`
- Basis string `xorm:"comment('依据标准') VARCHAR(50)"`
- Instruments string `xorm:"comment('使用仪器') VARCHAR(50)"`
- State string `xorm:"comment('仪器状态') VARCHAR(50)"`
- LiquidDensity float64 `xorm:"comment('液体密度') DECIMAL(10,3)"`
- Temperature float64 `xorm:"comment('环境温度') DECIMAL(10,3)"`
- AfterTesting float64 `xorm:"comment('测试后仪器状态') DECIMAL(10,3)"`
- RelativeHumidity float64 `xorm:"comment('相对湿度') DECIMAL(10,3)"`
- Result string `xorm:"comment('检查结果') VARCHAR(50)"`
- LiquidTemperature float64 `xorm:"comment('液体温度') DECIMAL(10,3)"`
- Inhalation float64 `xorm:"comment('泵吸入管周长') DECIMAL(10,3)"`
- InhalationPressure float64 `xorm:"comment('吸入压力测点距基准面') DECIMAL(10,3)"`
- Imported float64 `xorm:"comment('进口壁厚 ') DECIMAL(10,3)"`
- Discharge float64 `xorm:"comment('泵排出管周长') DECIMAL(10,3)"`
- DischargePressure float64 `xorm:"comment('排出压力测点距基准面') DECIMAL(10,3)"`
- Exit float64 `xorm:"comment('出口壁厚 ') DECIMAL(10,3)"`
- ThrottleValve float64 `xorm:"comment('节阀后管周长') DECIMAL(10,3)"`
- ThrottlePressure float64 `xorm:"comment('节阀后压力测点距基准面') DECIMAL(10,3)"`
- AfterValve float64 `xorm:"comment('阀后壁厚 ') DECIMAL(10,3)"`
- Transmission string `xorm:"comment('机组传动方式') VARCHAR(20)"`
- Adjust string `xorm:"comment('工况调节方式及监测时调节状态') VARCHAR(20)"`
- TrafficTest1 float64 `xorm:"comment('测试泵流量1') DECIMAL(10,3)"`
- TrafficTest2 float64 `xorm:"comment('测试泵流量2') DECIMAL(10,3)"`
- TrafficTest3 float64 `xorm:"comment('测试泵流量3') DECIMAL(10,3)"`
- TrafficRecord float64 `xorm:"comment('测试泵流量均值或合计') DECIMAL(10,3)"`
- PumpSuction1 float64 `xorm:"comment('泵吸入表压1') DECIMAL(10,3)"`
- PumpSuction2 float64 `xorm:"comment('泵吸入表压2') DECIMAL(10,3)"`
- PumpSuction3 float64 `xorm:"comment('泵吸入表压3') DECIMAL(10,3)"`
- PumpSuctionRecord float64 `xorm:"comment('泵吸入表压均值或合计') DECIMAL(10,3)"`
- PumpDischarge1 float64 `xorm:"comment('泵排出表压1') DECIMAL(10,3)"`
- PumpDischarge2 float64 `xorm:"comment('泵排出表压2') DECIMAL(10,3)"`
- PumpDischarge3 float64 `xorm:"comment('泵排出表压3') DECIMAL(10,3)"`
- PumpDischargeRecord float64 `xorm:"comment('泵排出表压均值或合计') DECIMAL(10,3)"`
- ThrottlePressure1 float64 `xorm:"comment('节阀后表压1') DECIMAL(10,3)"`
- ThrottlePressure2 float64 `xorm:"comment('节阀后表压2') DECIMAL(10,3)"`
- ThrottlePressure3 float64 `xorm:"comment('节阀后表压3') DECIMAL(10,3)"`
- ThrottleRecord float64 `xorm:"comment('节阀后表压均值或合计') DECIMAL(10,3)"`
- TestVoltage1 float64 `xorm:"comment('测试电压1') DECIMAL(10,3)"`
- TestVoltage2 float64 `xorm:"comment('测试电压2') DECIMAL(10,3)"`
- TestVoltage3 float64 `xorm:"comment('测试电压3') DECIMAL(10,3)"`
- TestVolRecord float64 `xorm:"comment('测试电压均值或合计') DECIMAL(10,3)"`
- TestCurrent1 float64 `xorm:"comment('测试电流1') DECIMAL(10,3)"`
- TestCurrent2 float64 `xorm:"comment('测试电流2') DECIMAL(10,3)"`
- TestCurrent3 float64 `xorm:"comment('测试电流3') DECIMAL(10,3)"`
- TestCurrentRecord float64 `xorm:"comment('测试电流均值或合计') DECIMAL(10,3)"`
- MotorPower1 float64 `xorm:"comment('电机输入功率1') DECIMAL(10,3)"`
- MotorPower2 float64 `xorm:"comment('电机输入功率2') DECIMAL(10,3)"`
- MotorPower3 float64 `xorm:"comment('电机输入功率3') DECIMAL(10,3)"`
- MotorPowerRecord float64 `xorm:"comment('电机输入功率均值或合计') DECIMAL(10,3)"`
- MotorFactor1 float64 `xorm:"comment('电机功率因数1') DECIMAL(10,3)"`
- MotorFactor2 float64 `xorm:"comment('电机功率因数2') DECIMAL(10,3)"`
- MotorFactor3 float64 `xorm:"comment('电机功率因数3') DECIMAL(10,3)"`
- MotorFactorRecord float64 `xorm:"comment('电机功率均值或合计') DECIMAL(10,3)"`
- 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)"`
- }
|