You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.4 KiB
Go

4 weeks ago
package Model
import (
"database/sql"
"time"
)
type T_Congress struct {
ID string
Co_TypeID string
Co_Name string
Co_Subject string
Co_RoomID string
Co_Status string
Co_StartTime time.Time
Co_EndTime time.Time
Co_AheadTime int
Co_CheckInStartTime time.Time
Co_CheckInEndTime time.Time
Co_CheckInType string
Co_SeatMode string
Co_AutoRun int
Co_AutoClose int
Co_UpdateTime time.Time
Co_CreateTime time.Time
Co_CreatorID string
Co_HostUnit string
Co_serial int
Co_IsFile int
}
type SQLT_Congress struct {
Co_ID sql.NullString
Co_TypeID sql.NullString
Co_Name sql.NullString
Co_Subject sql.NullString
Co_RoomID sql.NullString
Co_Status sql.NullString
Co_StartTime sql.NullTime
Co_EndTime sql.NullTime
Co_AheadTime sql.NullInt32
Co_CheckInStartTime sql.NullTime
Co_CheckInEndTime sql.NullTime
Co_CheckInType sql.NullString
Co_SeatMode sql.NullString
Co_AutoRun sql.NullInt32
Co_AutoClose sql.NullInt32
Co_UpdateTime sql.NullTime
Co_CreateTime sql.NullTime
Co_CreatorID sql.NullString
Co_HostUnit sql.NullString
Co_Serial sql.NullInt32
Co_IsFile sql.NullInt32
}