| | |
| | | import com.alibaba.fastjson2.annotation.JSONField; |
| | | import com.alibaba.fastjson2.writer.ObjectWriterImplToString; |
| | | import com.dy.common.po.BaseEntity; |
| | | import com.fasterxml.jackson.annotation.JsonPropertyOrder; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | |
| | | */ |
| | | |
| | | @Data |
| | | @JsonPropertyOrder({ "id", "vcNum", "money", "inUse", "isAlarmValue"}) |
| | | public class VoVirtualCard implements BaseEntity { |
| | | private static final long serialVersionUID = 202405240815001L; |
| | | |
| | |
| | | |
| | | private Double money; |
| | | |
| | | private Byte inUse; |
| | | private Boolean inUse; |
| | | |
| | | private String inUseName; |
| | | private Boolean isAlarmValue; |
| | | |
| | | } |