| | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * @author ZhuBaoMin |
| | | * @date 2024-01-24 17:00 |
| | |
| | | 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 clientNum; |
| | | private String cashierName; |
| | | |
| | | @Schema(title = "实收金额") |
| | | private Float tradeAmount; |
| | |
| | | @Schema(title = "总额") |
| | | private Float totalAmount; |
| | | |
| | | @Schema(title = "日期") |
| | | private Date operateDate; |
| | | @Schema(title = "交易日期") |
| | | private String operateDate; |
| | | |
| | | @Schema(title = "审核状态") |
| | | private String auditStatus; |
| | | |
| | | } |