|
|
@@ -213,8 +213,17 @@ public class StoreInfoDto {
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
private Date entertainmentLicenceExpirationTime;
|
|
|
|
|
|
-// @ApiModelProperty(value = "分类id(词典表 键为 business_classify)(多个ID用逗号拼接)")
|
|
|
-// @JsonDeserialize(using = StringToListDeserializer.class)
|
|
|
-// private List<String> businessClassify;
|
|
|
+ @ApiModelProperty(value = "营业执照图片URL")
|
|
|
+ private String businessLicenseUrl;
|
|
|
|
|
|
+ @ApiModelProperty(value = "营业执照状态 字典 foodLicenceStatus")
|
|
|
+ private Integer businessLicenseStatus;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "营业执照失败原因")
|
|
|
+ private String businessLicenseReason;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "营业执照到期时间")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
+ private Date businessLicenseExpirationTime;
|
|
|
}
|