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.
14 lines
181 B
Go
14 lines
181 B
Go
4 weeks ago
|
package Model
|
||
|
import (
|
||
|
"database/sql"
|
||
|
// "time"
|
||
|
)
|
||
|
type T_Room struct {
|
||
|
Rm_ID string
|
||
|
Rm_Name string
|
||
|
}
|
||
|
|
||
|
type SQLT_Room struct {
|
||
|
Rm_ID sql.NullString
|
||
|
Rm_Name sql.NullString
|
||
|
}
|