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.

25 lines
424 B

  1. package db
  2. import "leit.com/leit_seat_aps/common"
  3. //周模型
  4. type Weekmodel struct {
  5. Finr int `xorm:"pk"`
  6. Weekmodelid int `xorm:"pk"`
  7. Datefrom int
  8. Descr string
  9. Abrev string
  10. Control int
  11. Loopdays int
  12. Lastmodif string
  13. Lastuser string
  14. Credatuz string
  15. }
  16. func (t *Weekmodel) Clipped() {
  17. common.TrimStruct(t, *t)
  18. }
  19. func (t *Weekmodel) TableName() string {
  20. return "weekmodel"
  21. }