|
@@ -57,7 +57,6 @@ public class BizCompany extends BaseEntity
|
|
|
private String oldName;
|
|
|
|
|
|
/** 所有权人 */
|
|
|
- @Excel(name = "所有权人")
|
|
|
@ApiModelProperty(value = "所有权人")
|
|
|
private String owner;
|
|
|
|
|
@@ -66,17 +65,14 @@ public class BizCompany extends BaseEntity
|
|
|
private Long ownerId;
|
|
|
|
|
|
/** 企业电话 */
|
|
|
- @Excel(name = "企业电话")
|
|
|
@ApiModelProperty(value = "企业电话")
|
|
|
private String phone;
|
|
|
|
|
|
/** 企业邮箱 */
|
|
|
- @Excel(name = "企业邮箱")
|
|
|
@ApiModelProperty(value = "企业邮箱")
|
|
|
private String email;
|
|
|
|
|
|
/** 联系地址 */
|
|
|
- @Excel(name = "联系地址")
|
|
|
@ApiModelProperty(value = "联系地址")
|
|
|
private String contactAddress;
|
|
|
|
|
@@ -91,11 +87,12 @@ public class BizCompany extends BaseEntity
|
|
|
/** 客户来源:与合同来源共用一个数据源 */
|
|
|
@ApiModelProperty(value = "联系地址")
|
|
|
private Long sourceCategoryId;
|
|
|
-
|
|
|
- /** 客户来源 */
|
|
|
- @Excel(name = "客户来源")
|
|
|
- @ApiModelProperty(value = "客户来源")
|
|
|
- private String source;
|
|
|
+ @TableField(exist = false)
|
|
|
+ @Excel(name = "来源类型")
|
|
|
+ private String sourceCategoryName;
|
|
|
+ @TableField(exist = false)
|
|
|
+ @Excel(name="来源名称")
|
|
|
+ private String sourceName;
|
|
|
|
|
|
/** 客户来源: */
|
|
|
@ApiModelProperty(value = "客户来源")
|
|
@@ -162,7 +159,6 @@ public class BizCompany extends BaseEntity
|
|
|
private String registerMoney;
|
|
|
|
|
|
/** 注册资金单位 */
|
|
|
- @Excel(name = "注册资金单位")
|
|
|
@ApiModelProperty(value = "注册资金单位")
|
|
|
private String registerMoneyUnit;
|
|
|
|
|
@@ -254,12 +250,10 @@ public class BizCompany extends BaseEntity
|
|
|
private Date taxMonth;
|
|
|
|
|
|
/** 开户行 */
|
|
|
- @Excel(name = "开户行")
|
|
|
@ApiModelProperty(value = "开户行")
|
|
|
private String openingBank;
|
|
|
|
|
|
/** 银行账户 */
|
|
|
- @Excel(name = "银行账户")
|
|
|
@ApiModelProperty(value = "银行账户")
|
|
|
private String bankAccount;
|
|
|
|
|
@@ -327,17 +321,15 @@ public class BizCompany extends BaseEntity
|
|
|
private BigDecimal quotaAmount;
|
|
|
|
|
|
/** 窗口现金交 */
|
|
|
- @Excel(name = "窗口现金交")
|
|
|
- @ApiModelProperty(value = "窗口现金交")
|
|
|
+ @Excel(name = "窗口缴纳",readConverterExp = "0=否,1=是")
|
|
|
+ @ApiModelProperty(value = "窗口缴纳")
|
|
|
private Integer isPayOnWindow;
|
|
|
|
|
|
/** 初次社保信息保存 */
|
|
|
- @Excel(name = "初次社保信息保存")
|
|
|
@ApiModelProperty(value = "初次社保信息保存")
|
|
|
private Integer isFirstSocialSecurity;
|
|
|
|
|
|
/** 初次公积金信息保存 */
|
|
|
- @Excel(name = "初次公积金信息保存")
|
|
|
@ApiModelProperty(value = "初次公积金信息保存")
|
|
|
private Integer isFirstHousingFund;
|
|
|
|
|
@@ -350,14 +342,12 @@ public class BizCompany extends BaseEntity
|
|
|
@TableField(exist = false)
|
|
|
private List<BizCompanyContactor> contactors;
|
|
|
|
|
|
- @TableField(exist = false)
|
|
|
- @Excel(name = "来源类型")
|
|
|
- private String sourceCategoryName;
|
|
|
+
|
|
|
+
|
|
|
@ApiModelProperty("客户标签")
|
|
|
private Long customerLabelId;
|
|
|
- @TableField(exist = false)
|
|
|
- @Excel(name="来源名称")
|
|
|
- private String sourceName;
|
|
|
+
|
|
|
+
|
|
|
|
|
|
@ApiModelProperty("负责人")
|
|
|
private Long leaderId;
|