package eol import ( "time" "xorm.io/core" ) /****************************************************************************** * * @Struct Name : SBR *----------------------------------------------------------------------------- * * @Description : EOLTESTR1的实体映射 * * @Author : 代码生成器创建 * * @Date : 2022-05-23 15:56:29 * ******************************************************************************/ type SBR struct { Barcode string `xorm:"nvarchar(255) '条码'" json:"EOL_TEST_R_1-Barcode"` Result string `xorm:"nvarchar(255) '测试结果(P/F)'" json:"EOL_TEST_R_1-Result"` CheckTime time.Time `xorm:"datetime '测试完成日期时间'" json:"EOL_TEST_R_1-CheckTime"` } func (self *SBR) GetKey() core.PK { return core.PK{ } }