|
|
@@ -180,20 +180,26 @@ public class StoreInfoDto {
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
private Date foodLicenceExpirationTime;
|
|
|
|
|
|
- @ApiModelProperty(value = "分类id(词典表 键为 business_classify)")
|
|
|
- private List<String> businessClassifyList;
|
|
|
+ @ApiModelProperty(value = "分类id(词典表 键为 business_classify)(多个ID用逗号拼接)")
|
|
|
+ private List<String> businessClassify;
|
|
|
|
|
|
@ApiModelProperty(value = "分类名称")
|
|
|
private String businessClassifyName;
|
|
|
|
|
|
+ @ApiModelProperty(value = "是否提供餐食")
|
|
|
+ private Integer mealsFlag;
|
|
|
|
|
|
- @ApiModelProperty(value = "分类id(词典表 键为 business_classify)(多个ID用逗号拼接)")
|
|
|
- private List<String> businessClassify;
|
|
|
+ @ApiModelProperty(value = "娱乐经营许可证图片地址")
|
|
|
+ private String entertainmentLicenceUrl;
|
|
|
|
|
|
- @ApiModelProperty(value = "是否提供餐食 0=不提供 1=提供")
|
|
|
- @TableField("meal_provided")
|
|
|
- private Integer mealProvided;
|
|
|
+ @ApiModelProperty(value = "娱乐经营许可证状态")
|
|
|
+ private Integer entertainmentLicenceStatus;
|
|
|
|
|
|
- @ApiModelProperty(value = "娱乐经营许可证")
|
|
|
- private List<String> entertainmentLicenseAddress;
|
|
|
+ @ApiModelProperty(value = "娱乐经营许可证原因")
|
|
|
+ private String entertainmentLicenceReason;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "娱乐经营许可证到期时间")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
+ private Date entertainmentLicenceExpirationTime;
|
|
|
}
|