github.com/SupenBysz/gf-admin-community@v0.7.4/sys_model/sys_entity/sys_person_license.go (about)

     1  // =================================================================================
     2  // Code generated by GoFrame CLI tool. DO NOT EDIT.
     3  // =================================================================================
     4  
     5  package sys_entity
     6  
     7  import (
     8  	"github.com/gogf/gf/v2/os/gtime"
     9  )
    10  
    11  // SysPersonLicense is the golang structure for table sys_person_license.
    12  type SysPersonLicense struct {
    13  	Id               int64       `json:"id"               description:"ID"`
    14  	IdcardFrontPath  string      `json:"idcardFrontPath"  description:"身份证头像面照片"`
    15  	IdcardBackPath   string      `json:"idcardBackPath"   description:"身份证国徽面照片"`
    16  	No               string      `json:"no"               description:"身份证号"`
    17  	Gender           int         `json:"gender"           description:"性别"`
    18  	Nation           string      `json:"nation"           description:"名族"`
    19  	Name             string      `json:"name"             description:"姓名"`
    20  	Birthday         string      `json:"birthday"         description:"出生日期"`
    21  	Address          string      `json:"address"          description:"家庭住址"`
    22  	IssuingAuthorit  string      `json:"issuingAuthorit"  description:"签发机关"`
    23  	IssuingDate      string      `json:"issuingDate"      description:"签发日期"`
    24  	ExpriyDate       string      `json:"expriyDate"       description:""`
    25  	CreatedAt        *gtime.Time `json:"createdAt"        description:""`
    26  	UpdatedAt        *gtime.Time `json:"updatedAt"        description:""`
    27  	DeletedAt        *gtime.Time `json:"deletedAt"        description:""`
    28  	State            int         `json:"state"            description:"状态:0失效、1正常"`
    29  	AuthType         int         `json:"authType"         description:"认证类型:"`
    30  	Remark           string      `json:"remark"           description:"备注信息"`
    31  	LatestAuditLogId int64       `json:"latestAuditLogId" description:"最新的审核记录id"`
    32  }