SJA APS后端代码
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.

44 lines
856 B

  1. package db
  2. import (
  3. "leit.com/leit_seat_aps/common"
  4. )
  5. // BOM 数据行
  6. type Me_bomlst struct {
  7. Finr int `xorm:"pk"`
  8. Bomid string `xorm:"pk"`
  9. Fmatnr string `xorm:"pk"`
  10. Cmatnr string `xorm:"pk"`
  11. Fmatname string
  12. Fmatspec string
  13. Fmatqty float32
  14. Fmatuom string
  15. Cmatname string
  16. Cmatqty float32
  17. Cmatuom string
  18. Cmattype string
  19. Position int
  20. Leadtime float32
  21. Lossrate float32
  22. Timeuom string
  23. Backflushitem int
  24. Criticalitem int
  25. Validfrom string
  26. Validto string
  27. Bomlst_cval1 string
  28. Bomlst_cval2 string
  29. Bomlst_ival1 int
  30. Bomlst_ival2 int
  31. Lastmodif string
  32. Lastuser string
  33. Credatuz string
  34. }
  35. func (t *Me_bomlst) Clipped() {
  36. common.TrimStruct(t, *t)
  37. }
  38. func (t *Me_bomlst) TableName() string {
  39. return "me_bomlst"
  40. }