mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-25 21:45:08 +08:00
update 后管计费模板页面
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user