17 lines
1.7 KiB
Go
17 lines
1.7 KiB
Go
package dbstruct
|
|
|
|
type RealNameAuthentication struct {
|
|
Id *int64 `json:"id" bson:"_id"` // 实名认证表id
|
|
Mid *int64 `json:"mid" bson:"mid"` // 用户表id
|
|
RealName *string `json:"real_name" bson:"real_name" jcrypto:"rsa" bcrypto:"rsa"` // 实名
|
|
IDNo *string `json:"ID_no" bson:"ID_no" jcrypto:"rsa" bcrypto:"rsa"` // 身份证号
|
|
IDCardPhotos *MediaComponent `json:"ID_card_photos" bson:"ID_card_photos"` // 身份证照片
|
|
FullFacePhotoWithIDCardInHand *MediaComponent `json:"full_face_photo_with_ID_card_in_hand" bson:"full_face_photo_with_ID_card_in_hand"` // 手持身份证正脸照
|
|
Status *int64 `json:"status" bson:"status"` // 审批状态
|
|
Remarks *string `json:"remarks" bson:"remarks"` // 备注
|
|
Ct *int64 `json:"ct" bson:"ct"` // 创建时间
|
|
Ut *int64 `json:"ut" bson:"ut"` // 更新时间
|
|
DelFlag *int64 `json:"del_flag" bson:"del_flag"` // 删除标记
|
|
|
|
}
|