Commit f8335eec by huluobin

order createTime format

parent 21d68984
...@@ -32,6 +32,15 @@ public interface BaseProduceMapper extends BaseMapper<BaseProduce> { ...@@ -32,6 +32,15 @@ public interface BaseProduceMapper extends BaseMapper<BaseProduce> {
List<BaseProduce> queryHotServePage(@Param("customerId") Integer customerId, List<BaseProduce> queryHotServePage(@Param("customerId") Integer customerId,
@Param("produceLabelId") Integer produceLabelId); @Param("produceLabelId") Integer produceLabelId);
/**
* 分页查询款式
*
* @param page
* @param featuresId
* @param serveTypeId
* @param sort
* @return
*/
IPage<BaseProduce> queryProducePage(IPage<BaseProduce> page, IPage<BaseProduce> queryProducePage(IPage<BaseProduce> page,
@Param("featuresId") Integer featuresId, @Param("featuresId") Integer featuresId,
@Param("serveTypeId") Integer serveTypeId, @Param("serveTypeId") Integer serveTypeId,
......
...@@ -41,13 +41,14 @@ public class OrderManageDTO { ...@@ -41,13 +41,14 @@ public class OrderManageDTO {
private String departmentName; private String departmentName;
@ApiModelProperty("创建时间") @ApiModelProperty("创建时间")
private Date createTime;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date createTime;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
@ApiModelProperty("修改时间") @ApiModelProperty("修改时间")
private Date updateTime; private Date updateTime;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
@ApiModelProperty("开始付款时间") @ApiModelProperty("开始付款时间")
private Date launchTime; private Date launchTime;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment