影视会员
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.0 KiB

package com.cyjd.rights.dto;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.time.LocalDateTime;
/**
* @author :WXC
* @Date :2023/05/16
* @description :
*/
@ApiModel(value = "权益领取")
@Data
public class RightsOrderDto extends BasePageDto{
@ApiModelProperty(value = "手机号")
private String mobile;
/**
* 0失败 1成功 2下单成功回调还没来
*/
@ApiModelProperty(value = "订单状态")
private String status;
@ApiModelProperty(value = "查询开始时间")
@JsonFormat(shape = JsonFormat.Shape.STRING,pattern = "yyyy-MM-dd HH:mm:ss")
private LocalDateTime beginTime;
@ApiModelProperty(value = "查询结束时间")
@JsonFormat(shape = JsonFormat.Shape.STRING,pattern = "yyyy-MM-dd HH:mm:ss")
private LocalDateTime endTime;
@ApiModelProperty(value = "购买的产品编码")
private String productNumber;
}