|
|
@@ -1,10 +1,12 @@
|
|
|
package shop.alien.entity.store.dto;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
+import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* 根据类型获取美食详情响应 DTO
|
|
|
@@ -91,6 +93,21 @@ public class CuisineTypeResponseDto {
|
|
|
|
|
|
@ApiModelProperty("门店名称")
|
|
|
private String storeName;
|
|
|
+
|
|
|
+ @ApiModelProperty("提交时间")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ private Date createTime;
|
|
|
+
|
|
|
+ @ApiModelProperty("审核时间")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ private Date auditTime;
|
|
|
+
|
|
|
+ @ApiModelProperty("审核状态")
|
|
|
+ private Integer auditStatus;
|
|
|
+
|
|
|
+ @ApiModelProperty("上下架状态")
|
|
|
+ private Integer shelfStatus;
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
|