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.

52 lines
1.2 KiB
Go

4 weeks ago
package Model
import (
"database/sql"
"time"
)
type T_Agenda struct {
ID string
Ag_CongressID string
Ag_Name string
Ag_RoomID string
Ag_Content string
Ag_StartTime time.Time
Ag_EndTime time.Time
Ag_Type string
Ag_CheckInTime time.Time
Ag_CheckOverTime time.Time
Ag_Serial int
Ag_SeatGraph string
Ag_CheckInType string
Ag_SeatType string
Ag_CreateTime time.Time
Ag_UpdateTime time.Time
Ag_Status string
Ag_Remark string
AllTopic []string
AllAgFile []string
AllAgPerson []string
}
type SQLT_Agenda struct {
Ag_ID sql.NullString
Ag_CongressID sql.NullString
Ag_Name sql.NullString
Ag_RoomID sql.NullString
Ag_Content sql.NullString
Ag_StartTime sql.NullTime
Ag_EndTime sql.NullTime
Ag_Type sql.NullString
Ag_CheckInTime sql.NullTime
Ag_CheckOverTime sql.NullTime
Ag_Serial sql.NullInt32
Ag_SeatGraph sql.NullString
Ag_CheckInType sql.NullString
Ag_SeatType sql.NullString
Ag_CreateTime sql.NullTime
Ag_UpdateTime sql.NullTime
Ag_Status sql.NullString
Ag_Remark sql.NullString
}