| | |
| | | |
| | | @NotBlank(message = "门店名称不能为空") |
| | | @ApiModelProperty("门店名称") |
| | | private String storename; |
| | | private String storeName; |
| | | |
| | | @NotBlank(message = "手机号不能为空") |
| | | @Pattern(regexp = "^[1][3,4,5,6,7,8,9][0-9]{9}$", message = "手机号格式有误") |
| | |
| | | private String contact; |
| | | |
| | | @ApiModelProperty("地址") |
| | | private String storeaddr; |
| | | private String storeAddress; |
| | | |
| | | @ApiModelProperty("照片") |
| | | private String storephoto; |
| | | |
| | | @NotBlank(message = "身份证信息不能为空") |
| | | // @NotBlank(message = "身份证信息不能为空") |
| | | @ApiModelProperty("身份证信息") |
| | | private String idcardinfo; |
| | | |
| | |
| | | private String description; |
| | | |
| | | @ApiModelProperty("摄像头") |
| | | @TableField("video_id") |
| | | private String videoId; |
| | | private Long relationVideo; |
| | | |
| | | @ApiModelProperty("店铺状态") |
| | | @TableField("status") |
| | | private Integer status; |
| | | } |