package com.panzhihua.common.model.dtos.shop; import java.util.Date; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; /** * @ClasssName OrderSearchDTO * @Description 资金管理DTO * @Author cedoo * @Date 2021/4/16 * @Version 1.0 **/ @Data @ApiModel("资金管理查询参数") public class PageComShopFundsSearchDTO { @ApiModelProperty(value = "订单编号", example = "316356541616") private String orderNo; @ApiModelProperty(value = "支付时间-开始", example = "2021-03-18 19:59:06") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date payTimeStart; @ApiModelProperty(value = "支付时间-结束", example = "2021-04-18 19:59:14") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date payTimeEnd; @ApiModelProperty(value = "分页-当前页数", example = "1", required = true) private Long pageNum; @ApiModelProperty(value = "分页-每页记录数", example = "10", required = true) private Long pageSize; @ApiModelProperty(hidden = true) private Long userId; }