1234567891011121314151617 |
- package model
-
- import (
- "time"
- )
-
- type TaCustomerCalendar struct {
- CustomerCalendarId string `xorm:"not null pk VARCHAR(64)"`
- ModelName string `xorm:"not null VARCHAR(64)"`
- CustomerId string `xorm:"VARCHAR(64)"`
- Email string `xorm:"TEXT"`
- CreateDate time.Time `xorm:"DATETIME"`
- MakeStatus string `xorm:"VARCHAR(32)"`
- OrgId string `xorm:"VARCHAR(64)"`
- CaseId string `xorm:"VARCHAR(64)"`
- Status int `xorm:"SMALLINT(6)"`
- }
|