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.
32 lines
760 B
Go
32 lines
760 B
Go
package Model
|
|
|
|
import "database/sql"
|
|
|
|
type T_StaffCategory struct {
|
|
Ca_ID string
|
|
Ca_Name string
|
|
Ca_Num string
|
|
Ca_ReportPower int
|
|
Ca_VotePower int
|
|
Ca_SpeakPower int
|
|
Ca_FirstSpeakPower int
|
|
Ca_CallPower int
|
|
Ca_SearchPower int
|
|
Ca_Remarks string
|
|
Ca_Serial int
|
|
}
|
|
|
|
type SQLT_StaffCategory struct {
|
|
Ca_ID sql.NullString
|
|
Ca_Name sql.NullString
|
|
Ca_Num sql.NullString
|
|
Ca_ReportPower sql.NullInt32
|
|
Ca_VotePower sql.NullInt32
|
|
Ca_SpeakPower sql.NullInt32
|
|
Ca_FirstSpeakPower sql.NullInt32
|
|
Ca_CallPower sql.NullInt32
|
|
Ca_SearchPower sql.NullInt32
|
|
Ca_Remarks sql.NullString
|
|
Ca_Serial sql.NullInt32
|
|
}
|