影视会员
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.

39 lines
810 B

package com.cyjd.rights.dto;
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 = "查询开始时间")
private LocalDateTime beginTime;
@ApiModelProperty(value = "查询结束时间")
private LocalDateTime endTime;
@ApiModelProperty(value = "购买的产品编码")
private String productNumber;
}