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 }