123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- // Code generated by goctl. DO NOT EDIT.
- package types
- type Response struct {
- Error_code int64 `json:"error_code"` //响应代码
- Error_msg string `json:"error_msg"` //响应消息
- Data string `json:"data"` //响应内容
- }
- type Resp struct {
- Error_code int64 `json:"error_code"` //响应代码
- Error_msg string `json:"error_msg"` //响应消息
- Data interface{} `json:"data"`
- }
- type ExamineReq struct {
- EntId string `form:"entId"` //企业id
- AuthType string `form:"authType"` //审核状态 2审核通过 3审核不通过
- Reason string `form:"reason,optional"` //不通过原因
- AuditUser string `form:"auditUser"` //审核人
- ExamineId string `form:"examineId"` //审核id 认证记录表主键id
- }
- type CheckEntReq struct {
- EntId int64 `form:"entId"` //企业id
- }
- type AuthEntReq struct {
- Name string `form:"name"`
- CreditCode string `form:"creditCode"`
- AreaNumber string `form:"areaNumber"`
- Business string `form:"business"`
- OfficialLetter string `form:"officialLetter"`
- OrganizationType string `form:"organizationType"` //机构类型 1投标企业 2招标采购单位 3厂商 4招标代理机构 5经销商 6服务提供商 7其他
- ComPanyType string `form:"comPanyType"` //机构性质 1企业 2党政机关事业单位及其他
- AuthName string `form:"authName"` //联系人姓名
- AuthPhone string `form:"authPhone"` //联系人手机号
- RegPhone string `form:"regPhone"` //注册手机号
- EntId string `form:"entId,optional"`
- }
- type EntListReq struct {
- Name string `form:"name,optional"` //企业名称
- PageNum string `form:"pageNum,optional"` //页码,不传默认第一页 第一页为0
- PageSize string `form:"pageSize,optional"`
- CreditCode string `form:"creditCode,optional"`
- CreateStartTime string `form:"createStartTime,optional"`
- CreateEndTime string `form:"createEndTime,optional"`
- AuthStatus string `form:"authStatus,optional"`
- ValidStartTime string `form:"validStartTime,optional"`
- ValidEndTime string `form:"validEndTime,optional"`
- FrozenStatus string `form:"frozenStatus,optional"`
- RegPhone string `form:"regPhone,optional"`
- AuthPhone string `form:"authPhone,optional"`
- }
- type EntListResp struct {
- Error_code int64 `json:"error_code"` //响应代码
- Error_msg string `json:"error_msg"` //响应消息
- Data EntListData `json:"data"`
- }
- type EntListData struct {
- Count int64 `json:"count"`
- PageSize int64 `json:"pageSize"`
- List []*EntList `json:"list"`
- }
- type EntList struct {
- Id int64 `json:"id"`
- ComPanyType int64 `json:"comPanyType"` // 机构性质 1企业 2党政机关事业单位及其他
- Name string `json:"name"` //机构名称
- OrganizationType int64 `json:"organizationType"` //机构类型 1企业 2党政机关事业单位及其他
- Createtime string `json:"createTime"` //创建时间
- ValidTime string `json:"validTime"` //有效截至日期
- AuthStatus int64 `json:"authStatus"` //认证状态
- FrozenStatus int64 `json:"frozenStatus"` //冻结状态 1正常 0冻结
- }
- type ExamineListReq struct {
- Name string `form:"name,optional"` //机构名称
- AuthPhone string `form:"authPhone,optional"` //联系人手机号
- RegPhone string `form:"regPhone,optional"` //注册人手机号
- AuthType string `form:"authType,optional"` //审核状态 1:待审核 2:审核通过 3:审核不通过
- AuthStartTime string `form:"authStartTime,optional"` //申请开始时间
- AuthEndTime string `form:"authEndTime,optional"` //申请结束时间
- PageNum string `form:"pageNum,optional"` //页码
- PageSize string `form:"pageSize,optional"` //每页展示条数
- }
- type ExamineListResp struct {
- Error_code int64 `json:"error_code"`
- Error_msg string `json:"error_msg"`
- Data ExamineListData `json:"data"`
- }
- type ExamineListData struct {
- Count int64 `json:"count"`
- PageSize int64 `json:"pageSize"`
- List []*ExamineList `json:"list"`
- }
- type ExamineList struct {
- Id int64 `json:"id"` //机构id
- EntId int64 `json:"entId"` //企业id
- ComPanyType int64 `json:"comPanyType"` // 机构性质 1企业 2党政机关事业单位及其他
- Name string `json:"name"` //机构名称
- CreditCode string `json:"creditCode"` //统一社会信用代码
- AuthPhone string `json:"authPhone"` //联系人手机号
- ApplyTime string `json:"applyTime"` //申请时间戳
- AuthType int64 `json:"authType"` //审核状态 1:待审核 2:审核通过 3:审核不通过
- }
|