添加与完善线索导入与新增
This commit is contained in:
@@ -22,7 +22,7 @@ import java.io.Serializable;
|
||||
@Accessors(chain = true)
|
||||
public class HyPartnerLineDO implements Serializable {
|
||||
|
||||
@Excel(name = "*姓名(必填)")
|
||||
@Excel(name = "*姓名(必填)" )
|
||||
@ApiModelProperty("姓名")
|
||||
private String partnerName;
|
||||
|
||||
@@ -30,33 +30,32 @@ public class HyPartnerLineDO implements Serializable {
|
||||
@ApiModelProperty("手机号")
|
||||
private String mobile;
|
||||
|
||||
@Excel(name = "*常驻区域(必填)")
|
||||
@Excel(name = "*常驻区域(必填)",width =18)
|
||||
@ApiModelProperty("常驻区域")
|
||||
private String liveAreaReplace;
|
||||
|
||||
private String liveArea;
|
||||
|
||||
@Excel(name = "*意向区域(必填)")
|
||||
@Excel(name = "*意向区域(必填)",width =18)
|
||||
@ApiModelProperty("意向区域")
|
||||
private String wantShopAreaReplace;
|
||||
|
||||
private Long wantShopArea;
|
||||
|
||||
@Excel(name = "*是否接受调剂(必填)")
|
||||
@Excel(name = "*是否接受调剂(必填)",width =18)
|
||||
@ApiModelProperty("是否接受调剂")
|
||||
private String acceptAdjustTypeReplace;
|
||||
|
||||
private Integer acceptAdjustType;
|
||||
|
||||
@Excel(name = "分配招商经理")
|
||||
@Excel(name = "分配招商经理",width =18)
|
||||
@ApiModelProperty("分配招商经理")
|
||||
private String investmentManagerReplace;
|
||||
|
||||
private String investmentManager;
|
||||
|
||||
|
||||
|
||||
@Excel(name = "错误信息")
|
||||
@Excel(name = "错误信息",width =26)
|
||||
@ApiModelProperty("错误信息")
|
||||
private String errorInfo;
|
||||
|
||||
|
||||
@@ -6,7 +6,9 @@ import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
import javax.validation.constraints.Max;
|
||||
import javax.validation.constraints.NotBlank;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import javax.validation.constraints.Pattern;
|
||||
import java.util.List;
|
||||
|
||||
@@ -41,7 +43,7 @@ public class AddLineRequest {
|
||||
/**
|
||||
* (0不接受调剂、1全国调剂、2省内调剂、3市内调剂)*
|
||||
*/
|
||||
@NotBlank(message = "是否接受调剂不能为空")
|
||||
@NotNull(message = "是否接受调剂不能为空")
|
||||
@ApiModelProperty("是否接受调剂")
|
||||
private Integer acceptAdjustType;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user