You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
482 B
20 lines
482 B
package upper |
|
|
|
// Upper reprensents the uppers |
|
type Upper struct { |
|
ID int |
|
MID int64 |
|
Toinit int |
|
Submit int // 1=need report |
|
OriName string // original name |
|
CMSName string // cms intervened name |
|
OriFace string // original face |
|
CMSFace string // cms intervened face |
|
Valid int // auth info: 1=online,0=hidden |
|
Deleted int |
|
} |
|
|
|
// CanShow tells whether the upper can be displayed or not |
|
func (u *Upper) CanShow() bool { |
|
return u.Valid == 1 && u.Deleted == 0 |
|
}
|
|
|