| @@ -0,0 +1,40 @@ | |||||
| package com.iformall.domain.vo.invest; | |||||
| import cn.afterturn.easypoi.excel.annotation.Excel; | |||||
| import lombok.Data; | |||||
| import javax.validation.constraints.NotNull; | |||||
| import javax.validation.constraints.Pattern; | |||||
| import java.io.Serializable; | |||||
| @Data | |||||
| public class InvestCustomerVoT implements Serializable { | |||||
| @Excel(name="品牌*",width = 20,orderNum = "1") | |||||
| @io.swagger.annotations.ApiModelProperty(value="品牌",name="brandName") | |||||
| @NotNull | |||||
| private String brandName; | |||||
| @Excel(name="品牌负责人*",width = 20,orderNum = "2") | |||||
| @io.swagger.annotations.ApiModelProperty(value="品牌负责人",name="name") | |||||
| @NotNull | |||||
| private String name; | |||||
| @Excel(name = "负责人电话*", width = 20, orderNum = "3") | |||||
| @io.swagger.annotations.ApiModelProperty(value="负责人电话",name="phone") | |||||
| @NotNull | |||||
| @Pattern(regexp = "1[0123456789]\\d{9}", message = "手机号不正确") | |||||
| private String phone; | |||||
| @Excel(name="经营业态*",width = 20,orderNum = "4") | |||||
| @io.swagger.annotations.ApiModelProperty(value="用户昵称",name="business") | |||||
| @NotNull | |||||
| private String business; | |||||
| @Excel(name="意向铺位*",width = 20,orderNum = "5") | |||||
| @io.swagger.annotations.ApiModelProperty(value="学历",name="shopNumber") | |||||
| @NotNull | |||||
| private String shopNumber; | |||||
| @Excel(name="意向租凭面积",width = 20,orderNum = "2") | |||||
| @io.swagger.annotations.ApiModelProperty(value="意向租凭面积",name="rentArea") | |||||
| private Integer rentArea; | |||||
| @Excel(name="预计开业时间",width = 20,orderNum = "6") | |||||
| @io.swagger.annotations.ApiModelProperty(value="预计开业时间",name="openingTime") | |||||
| private String openingTime; | |||||
| } | |||||