Files
jsowell-charger-web/jsowell-pile/src/main/java/com/jsowell/pile/dto/GetInvoiceInfoDTO.java
2023-08-21 14:38:30 +08:00

43 lines
611 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package com.jsowell.pile.dto;
import lombok.Data;
import java.util.List;
/**
* 查询发票列表DTO
*
* @author Lemon
* @Date 2023/8/21 13:50
*/
@Data
public class GetInvoiceInfoDTO {
private Integer pageNum;
private Integer pageSize;
/**
* 会员id
*/
private String memberId;
/**
* 运营商id
*/
private String merchantId;
/**
* 关联订单
*/
private String orderCodes;
/**
* 状态
*/
private String status;
/**
* 运营商部门id权限校验
*/
private List<String> merchantDeptIds;
}