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.

19 lines
364 B

  1. package db
  2. import "leit.com/leit_seat_aps/common"
  3. //周模型日清单
  4. type Workcalendarlst struct {
  5. Finr int `xorm:"pk"`
  6. Workcalendarid int `xorm:"pk"`
  7. Workdate int `xorm:"pk"`
  8. Daymodelid int
  9. }
  10. func (t *Workcalendarlst) Clipped() {
  11. common.TrimStruct(t, *t)
  12. }
  13. func (t *Workcalendarlst) TableName() string {
  14. return "workcalendarlst"
  15. }