广汽安道拓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.

27 lines
835 B

  1. package eol
  2. import (
  3. "time"
  4. "xorm.io/core"
  5. )
  6. /******************************************************************************
  7. *
  8. * @Struct Name : SBR
  9. *-----------------------------------------------------------------------------
  10. *
  11. * @Description : EOLTESTR1的实体映射
  12. *
  13. * @Author : 代码生成器创建
  14. *
  15. * @Date : 2022-05-23 15:56:29
  16. *
  17. ******************************************************************************/
  18. type SBR struct {
  19. Barcode string `xorm:"nvarchar(255) '条码'" json:"EOL_TEST_R_1-Barcode"`
  20. Result string `xorm:"nvarchar(255) '测试结果(P/F)'" json:"EOL_TEST_R_1-Result"`
  21. CheckTime time.Time `xorm:"datetime '测试完成日期时间'" json:"EOL_TEST_R_1-CheckTime"`
  22. }
  23. func (self *SBR) GetKey() core.PK {
  24. return core.PK{ }
  25. }