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.

21 lines
386 B

  1. package db
  2. import "leit.com/leit_seat_aps/common"
  3. //工作日历
  4. type Workcalendar struct {
  5. Finr int `xorm:"pk"`
  6. Workcalendarid int `xorm:"pk"`
  7. Descr string
  8. Lastmodif string
  9. Lastuser string
  10. Credatuz string
  11. }
  12. func (t *Workcalendar) Clipped() {
  13. common.TrimStruct(t, *t)
  14. }
  15. func (t *Workcalendar) TableName() string {
  16. return "workcalendar"
  17. }