package Model import ( "database/sql" "time" ) type T_StaffInfo struct { St_ID string St_Name string St_Num string St_CategoryID string St_GroupID string St_Image string St_WorkUnit string St_Sex int St_Phone string St_CardNum string St_ViceCardNum string St_ViceCardNumA string St_ViceCardNumB string St_NationID string St_PartyID string St_Job string St_Enabled int St_Remarks string St_CreateTime time.Time St_Updatetime time.Time St_Account string St_PWD string St_Wynum string St_Serial int St_SpareA string St_SpareB string StaffCategory T_StaffCategory StaffGroup T_StaffGroup } type T_Staff struct { ID string St_Num string St_Name string St_Sex int St_SexName string St_ViceCardNum string St_ViceCardNumA string St_ViceCardNumB string St_CategoryID string Ca_Name string St_GroupID string Gr_Name string St_WorkUnit string St_Phone string St_NationID string NationName string St_PartyID string Dic_Name string St_Image string St_Job string St_CardNum string St_Wynum string St_Remarks string St_Account string St_PWD string St_Enabled int } type SQLT_StaffInfo struct { St_ID sql.NullString St_Name sql.NullString St_Num sql.NullString St_CategoryID sql.NullString St_GroupID sql.NullString St_Image sql.NullString St_WorkUnit sql.NullString St_Sex sql.NullInt32 St_Phone sql.NullString St_CardNum sql.NullString St_ViceCardNum sql.NullString St_ViceCardNumA sql.NullString St_ViceCardNumB sql.NullString St_NationID sql.NullString St_PartyID sql.NullString St_Job sql.NullString St_Enabled sql.NullInt32 St_Remarks sql.NullString St_CreateTime sql.NullTime St_Updatetime sql.NullTime St_Account sql.NullString St_PWD sql.NullString St_Wynum sql.NullString St_Serial sql.NullInt32 St_SpareA sql.NullString St_SpareB sql.NullString StaffCategory SQLT_StaffCategory StaffGroup SQLT_StaffGroup }