liurunyu
2024-02-22 d919e26796ec5a6f78fc0b665840207f185f1274
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.dy.pipIrrGlobal.voSe;
 
import com.dy.common.po.BaseEntity;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
/**
 * @author ZhuBaoMin
 * @date 2024-01-24 17:00
 * @LastEditTime 2024-01-24 17:00
 * @Description
 */
 
@Data
@Schema(title = "财务对账之总账视图对象")
public class VoGeneral implements BaseEntity {
    private static final long serialVersionUID = 202401241706001L;
 
    @Schema(title = "总账ID")
    private String generalId;
 
    @Schema(title = "收银员ID")
    private String cashierId;
 
    @Schema(title = "收银员姓名")
    private String cashierName;
 
    @Schema(title = "实收金额")
    private Float tradeAmount;
 
    @Schema(title = "赠送金额")
    private Float gift;
 
    @Schema(title = "返还金额")
    private Float refundAmount;
 
    @Schema(title = "交易日期")
    private String operateDate;
 
    @Schema(title = "审核状态")
    private String auditStatus;
 
}