You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

139 lines
3.1 KiB
Java

6 years ago
package com.gszc.entity;
6 years ago
import com.baomidou.mybatisplus.annotations.TableField;
6 years ago
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
6 years ago
import java.io.Serializable;
import java.util.Date;
6 years ago
/**
* <p>
*
* </p>
*
* @author ky
* @since 2020-04-27
*/
@ApiModel
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
public class Custom implements Serializable {
private static final long serialVersionUID = 1L;
private String id;
@ApiModelProperty(value = "客户编号")
private String customNumber;
/**
* proprietorship
limit
partner
individual
*/
@ApiModelProperty(value = "注册类型 proprietorship-个人独资 limit-有限责任公司 partner-合伙人企业 individual-个体工商户")
private String registerType;
@ApiModelProperty(value = "注册资本")
private String registerMoney;
/**
*
*/
@ApiModelProperty(value = "行业类型")
private String industryType;
/**
*
*/
@ApiModelProperty(value = "经营范围")
private String businessScope;
/**
* smallScale
taxpayer
*/
@ApiModelProperty(value = "选择税种 smallScale-小规模 taxpayer-一般纳税人")
private String taxType;
@ApiModelProperty(value = "公司名称")
private String companyName;
/**
*
*/
@ApiModelProperty(value = "公司备用名")
private String companyNameBackup;
/**
*
*/
@ApiModelProperty(value = "联系人")
private String linkMan;
/**
*
*/
@ApiModelProperty(value = "联系电话")
private String linkTelephone;
/**
* enable
disable
todo
logout
*/
@ApiModelProperty(value = "状态 enable 认证通过 disable 认证不通过 todo 待接单 logout 已注销")
private String statusCode;
/**
* id
*/
@ApiModelProperty(value = "跟单员id")
private String copycatId;
6 years ago
@ApiModelProperty(hidden = true)
@TableField(exist = false)
private String copycatName;
6 years ago
/**
*
*/
@ApiModelProperty(value = "社会信用代码")
private String socialCreditCode;
/**
*
*/
@ApiModelProperty(value = "营业执照")
private String businessLicense;
6 years ago
private Date serviceBeginDate;
6 years ago
/**
*
red yellow blue purple
*/
@ApiModelProperty(value = "批注的图标 red yellow blue purple")
private String notice;
6 years ago
private Date serviceEndDate;
6 years ago
/**
* 使jsonarray
*/
@ApiModelProperty(value = "使用jsonarray")
private String noticeContent;
6 years ago
private Date createDate;
6 years ago
6 years ago
private Date modifyDate;
6 years ago
@ApiModelProperty(value = "小程序用户id")
private String miniUserId;
6 years ago
@ApiModelProperty(value = "园区")
private String park;
6 years ago
}