苏州瑞玛APS项目web后台
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.

54 lines
2.4 KiB

  1. // Copyright (c) Shenyang Leading Edge Intelligent Technology Co., Ltd. All rights reserved.
  2. package base
  3. import (
  4. "leit.com/LAPP_CHEERSSON_BACKEND/grmi"
  5. "xorm.io/core"
  6. )
  7. /******************************************************************************
  8. *
  9. * @Struct Name : ScriptItem
  10. *-----------------------------------------------------------------------------
  11. *
  12. * @Description : ScriptItem的实体映射
  13. *
  14. * @Author : 代码生成器创建
  15. *
  16. * @Date : 2021-08-20 11:28:44
  17. *
  18. ******************************************************************************/
  19. type ScriptItem struct {
  20. PlantNr int `xorm:"pk int 'PlantNr'" json:"ScriptItem-PlantNr"`
  21. Script string `xorm:"pk varchar(50) 'Script'" json:"ScriptItem-Script"`
  22. TabMapCol string `xorm:"pk varchar(50) 'TabMapCol'" json:"ScriptItem-TabMapCol"`
  23. ColNo int `xorm:"int 'ColNo' not null" json:"ScriptItem-ColNo"`
  24. ColName string `xorm:"varchar(50) 'ColName' not null" json:"ScriptItem-ColName"`
  25. RowNo int `xorm:"int 'RowNo' not null" json:"ScriptItem-RowNo"`
  26. RowName string `xorm:"varchar(50) 'RowName' not null" json:"ScriptItem-RowName"`
  27. ColFieldType string `xorm:"varchar(50) 'ColFieldType' not null" json:"ScriptItem-ColFieldType"`
  28. ColFormat string `xorm:"varchar(50) 'ColFormat' not null" json:"ScriptItem-ColFormat"`
  29. DefaultValue string `xorm:"varchar(50) 'DefaultValue' not null" json:"ScriptItem-DefaultValue"`
  30. LastModify grmi.DateTime `xorm:"datetime 'LastModify' not null updated" json:"ScriptItem-LastModify"`
  31. LastUser string `xorm:"nvarchar(20) 'LastUser' not null" json:"ScriptItem-LastUser"`
  32. CreateTime grmi.DateTime `xorm:"datetime 'CreateTime' not null created" json:"ScriptItem-CreateTime"`
  33. }
  34. /******************************************************************************
  35. *
  36. * @Function Name : GetKey
  37. *-----------------------------------------------------------------------------
  38. *
  39. * @Description : 获取实体的主键
  40. *
  41. * @Return Value : 实体的主键
  42. *
  43. * @Author : 代码生成器创建
  44. *
  45. * @Date : 2021-08-20 11:28:44
  46. *
  47. ******************************************************************************/
  48. func (self *ScriptItem) GetKey() core.PK {
  49. return core.PK{self.PlantNr, self.Script, self.TabMapCol}
  50. }