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
340 B

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