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.
22 lines
1.6 KiB
22 lines
1.6 KiB
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// ExperienceOfficerSign is the golang structure for table experience_officer_sign.
|
|
type ExperienceOfficerSign struct {
|
|
Id uint `json:"id" orm:"id" description:""` //
|
|
Jwcode int `json:"jwcode" orm:"jwcode" description:""` //
|
|
Time int `json:"time" orm:"time" description:""` //
|
|
State int `json:"state" orm:"state" description:"1 报名用户"` // 1 报名用户
|
|
Location int `json:"location" orm:"location" description:"1 新加坡 2 马来 3 香港 4 美股 5 A股"` // 1 新加坡 2 马来 3 香港 4 美股 5 A股
|
|
Identity int `json:"identity" orm:"identity" description:"1 博股会员 2 金卡会员"` // 1 博股会员 2 金卡会员
|
|
ReservationCode string `json:"reservationCode" orm:"reservation_code" description:""` //
|
|
Seat string `json:"seat" orm:"seat" description:""` //
|
|
Date *gtime.Time `json:"date" orm:"date" description:""` //
|
|
}
|