广汽安道拓Acura项目MES后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

28 lines
835 B

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{ }
}