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
| 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 2023-12-27 19:22
| * @LastEditTime 2023-12-27 19:22
| * @Description
| */
|
| @Data
| @Schema(title = "IC卡视图对象")
| public class VoCardInfo implements BaseEntity {
| private static final long serialVersionUID = 1L;
|
| @Schema(title = "水卡编号")
| private Long cardNum;
|
| @Schema(title = "卡片类型")
| private String cardType;
|
| @Schema(title = "余额")
| private Float money;
|
| @Schema(title = "水卡状态")
| private String state;
|
| }
|
|