| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- package limspetroleumpipe
- import "time"
- type LimsReportPetroleumPipe 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)"`
- Product string `xorm:"comment('产品名称') VARCHAR(50)"`
- Specifications string `xorm:"comment('规格型号') VARCHAR(50)"`
- SamplingBase int `xorm:"comment('抽样基数') INT(10)"`
- SampleQuantity int `xorm:"comment('样品数量') INT(10)"`
- SampleNumber string `xorm:"comment('样品编号') VARCHAR(50)"`
- CloseDistanceOut float64 `xorm:"comment('紧密距外螺纹1') DECIMAL(10,2)"`
- CloseDistanceIn float64 `xorm:"comment('紧密距内螺纹') DECIMAL(10,2)"`
- TaperToleranceOut1 float64 `xorm:"comment('锥度公差外螺纹') DECIMAL(10,2)"`
- TaperToleranceOut2 float64 `xorm:"comment('锥度公差外螺纹') DECIMAL(10,2)"`
- TaperToleranceIn1 float64 `xorm:"comment('锥度公差内螺纹') DECIMAL(10,2)"`
- TaperToleranceIn2 float64 `xorm:"comment('锥度公差内螺纹') DECIMAL(10,2)"`
- PitchToleranceOut1 float64 `xorm:"comment('螺距公差外螺纹') DECIMAL(10,2)"`
- PitchToleranceOut2 float64 `xorm:"comment('螺距公差外螺纹') DECIMAL(10,2)"`
- PitchToleranceIn1 float64 `xorm:"comment('螺距公差内螺纹') DECIMAL(10,2)"`
- PitchToleranceIn2 float64 `xorm:"comment('螺距公差内螺纹') DECIMAL(10,2)"`
- DepthToleranceOut1 float64 `xorm:"comment('齿高公差外螺纹') DECIMAL(10,2)"`
- DepthToleranceOut2 float64 `xorm:"comment('齿高公差外螺纹') DECIMAL(10,2)"`
- DepthToleranceIn1 float64 `xorm:"comment('齿高公差内螺纹') DECIMAL(10,2)"`
- DepthToleranceIn2 float64 `xorm:"comment('齿高公差内螺纹') DECIMAL(10,2)"`
- EdgeWidth float64 `xorm:"comment('对边宽') DECIMAL(10,2)"`
- DiagonalWidth float64 `xorm:"comment('对角宽') DECIMAL(10,2)"`
- LPC float64 `xorm:"comment('LPC') DECIMAL(10,2)"`
- DF float64 `xorm:"comment('DF') DECIMAL(10,2)"`
- QC float64 `xorm:"comment('QC') DECIMAL(10,2)"`
- WallThickness1 float64 `xorm:"comment('壁厚') DECIMAL(10,2)"`
- WallThickness2 float64 `xorm:"comment('壁厚') DECIMAL(10,2)"`
- WallThickness3 float64 `xorm:"comment('壁厚') DECIMAL(10,2)"`
- JointInDiameter float64 `xorm:"comment('接头内径') DECIMAL(10,2)"`
- ExDiameterF1 float64 `xorm:"comment('接头外径公端') DECIMAL(10,2)"`
- ExDiameterF2 float64 `xorm:"comment('接头外径公端') DECIMAL(10,2)"`
- ExDiameterM1 float64 `xorm:"comment('接头外径母端') DECIMAL(10,2)"`
- ExDiameterM2 float64 `xorm:"comment('接头外径母端') DECIMAL(10,2)"`
- TubeLength float64 `xorm:"comment('管体长度') DECIMAL(10,2)"`
- Appearance string `xorm:"comment('外观检验') VARCHAR(255)"`
- Inspector string `xorm:"comment('检验员') VARCHAR(50)"`
- Audit string `xorm:"comment('审核') VARCHAR(255)"`
- InspectionDate time.Time `xorm:"comment('检验日期') 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)"`
- }
|