|
|
@@ -248,4 +248,22 @@ public class StoreInfo {
|
|
|
@ApiModelProperty(value = "是否提供餐食")
|
|
|
@TableField("meals_flag")
|
|
|
private Integer mealsFlag;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "娱乐经营许可证状态")
|
|
|
+ @TableField("entertainment_licence_status")
|
|
|
+ private Integer entertainmentLicenceStatus;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "娱乐经营许可证失败原因")
|
|
|
+ @TableField("entertainment_licence_reason")
|
|
|
+ private String entertainmentLicenceReason;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "娱乐经营许可证到期时间")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ @TableField("entertainment_licence__expiration_time")
|
|
|
+ private Date entertainmentLicenceExpirationTime;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "变更娱乐经营许可证提交时间")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ @TableField("update_entertainment_licence_time")
|
|
|
+ private Date updateEntertainmentLicenceTime;
|
|
|
}
|