From 47f40c3a2ad57b6e3dcc7ef9e428e8605bcc0f75 Mon Sep 17 00:00:00 2001 From: Burce Date: Wed, 23 Oct 2019 18:01:18 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=8B=9B=E5=95=86]adjust?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../domain/vo/invest/InvestCustomerVoT.java | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 mallinkService/src/main/java/com/iformall/domain/vo/invest/InvestCustomerVoT.java diff --git a/mallinkService/src/main/java/com/iformall/domain/vo/invest/InvestCustomerVoT.java b/mallinkService/src/main/java/com/iformall/domain/vo/invest/InvestCustomerVoT.java new file mode 100644 index 000000000..7abd98333 --- /dev/null +++ b/mallinkService/src/main/java/com/iformall/domain/vo/invest/InvestCustomerVoT.java @@ -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; +}