zhubaomin
2024-08-30 0d1260a63328ee65bcb9bc6e8af2a0cdaf74cee2
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
package com.dy.pipIrrGlobal.voSe;
 
import com.alibaba.fastjson2.annotation.JSONField;
import com.alibaba.fastjson2.writer.ObjectWriterImplToString;
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 = "水卡编号")
    @JSONField(serializeUsing= ObjectWriterImplToString.class)
    private Long cardNum;
 
    @Schema(title = "卡片类型")
    private String cardType;
 
    @Schema(title = "余额")
    private Float money;
 
    @Schema(title = "水卡状态")
    private String state;
 
}