fhx
2024-04-11 8aabd6f9a44fb4de7ef2c70ff0a15fc000f4b5d9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.hz.his.dto.report;
 
import lombok.Data;
 
/**
 * 用户金额报表请求
 * @USER: fhx
 * @DATE: 2023/3/7
 **/
@Data
public class UserMoneyReportReqDto extends BaseQueryVo {
    //开始时间
    private String startTime;
    //结束时间
    private String endTime;
    //用户名称 or CIQ
    private String userName;
 
}