企业资质审核代码更新完善
parent
5c703b5877
commit
c522111c58
@ -0,0 +1,117 @@
|
||||
package com.glxp.api.entity.purchase;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.time.LocalDate;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
*
|
||||
* </p>
|
||||
*
|
||||
* @author 作者
|
||||
* @since 2023-02-07
|
||||
*/
|
||||
@TableName("user_company")
|
||||
@Data
|
||||
public class UserCompanyEntity {
|
||||
|
||||
@TableId("customerId")
|
||||
private String customerId;
|
||||
|
||||
/**
|
||||
* 企业名称
|
||||
*/
|
||||
@TableField("companyName")
|
||||
private String companyName;
|
||||
|
||||
/**
|
||||
* 企业类型 1生产企业,2流通企业,3,医疗机构.4.监管机构
|
||||
*/
|
||||
@TableField("bussinessStatus")
|
||||
private Integer bussinessStatus;
|
||||
|
||||
|
||||
|
||||
@TableField("checkStatus")
|
||||
private Integer checkStatus;
|
||||
|
||||
/**
|
||||
* 统一社会信用代码
|
||||
*/
|
||||
@TableField("creditNum")
|
||||
private String creditNum;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 注册地址
|
||||
*/
|
||||
@TableField("registerAddress")
|
||||
private String registerAddress;
|
||||
|
||||
/**
|
||||
* 注册时间
|
||||
*/
|
||||
@TableField("registerTime")
|
||||
private Date registerTime;
|
||||
|
||||
/**
|
||||
* 法人名称
|
||||
*/
|
||||
@TableField("legalPerson")
|
||||
private String legalPerson;
|
||||
|
||||
/**
|
||||
*
|
||||
* 法人身份证
|
||||
*/
|
||||
@TableField("legalIdCard")
|
||||
private String legalIdCard;
|
||||
|
||||
|
||||
/**
|
||||
* 联系电话
|
||||
*/
|
||||
@TableField("contactWay")
|
||||
private String contactWay;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
@TableField("comments")
|
||||
private String comments;
|
||||
|
||||
/**
|
||||
* 邮箱
|
||||
*/
|
||||
@TableField("email")
|
||||
private String email;
|
||||
|
||||
@TableField("areaCode")
|
||||
private String areaCode;
|
||||
|
||||
/**
|
||||
* 审核状态 0 未提交/3 已提交未审核/1 审核通过/2 审核未通过
|
||||
*/
|
||||
@TableField("status")
|
||||
private String status;
|
||||
|
||||
@TableField(exist = false)
|
||||
private String failCout;
|
||||
@TableField(exist = false)
|
||||
private String passCout;
|
||||
@TableField(exist = false)
|
||||
private String productFailCout;
|
||||
@TableField(exist = false)
|
||||
private String prouctPassCout;
|
||||
@TableField(exist = false)
|
||||
private String roleId;
|
||||
private String reason;
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,24 @@
|
||||
package com.glxp.api.req.purchase;
|
||||
|
||||
|
||||
import com.glxp.api.util.page.ListPageRequest;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class FilterUserCompanyRequest extends ListPageRequest {
|
||||
|
||||
private String customerId;
|
||||
private String companyName;
|
||||
private String creditNum;
|
||||
private Integer checkStatus;
|
||||
//地址
|
||||
private String registerAddress;
|
||||
|
||||
|
||||
private String lastUpdateTime;
|
||||
private List<String> auditStatusList;
|
||||
private Integer manufacturerStatus;
|
||||
|
||||
}
|
Loading…
Reference in New Issue