| | |
| | | import jakarta.validation.constraints.NotBlank; |
| | | import jakarta.validation.constraints.NotNull; |
| | | import lombok.*; |
| | | import org.hibernate.validator.constraints.Length; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * @author ZhuBaoMin |
| | | * @date 2024-07-24 10:36 |
| | | * @LastEditTime 2024-07-24 10:36 |
| | | * @Description |
| | | */ |
| | | /** |
| | | * 管理员水卡表 |
| | | * @date 2025-06-11 10:34 |
| | | * @LastEditTime 2025-06-11 10:34 |
| | | * @Description 管理员水卡表 |
| | | */ |
| | | |
| | | @TableName(value = "se_manager_card", autoResultMap = true) |
| | |
| | | @NoArgsConstructor |
| | | @AllArgsConstructor |
| | | public class SeManagerCard implements BaseEntity { |
| | | public static final long serialVersionUID = 202407241040001L; |
| | | public static final long serialVersionUID = 202506111039001L; |
| | | |
| | | /** |
| | | * 主键 |
| | |
| | | @JSONField(serializeUsing= ObjectWriterImplToString.class) |
| | | @TableId(type = IdType.INPUT) |
| | | private Long id; |
| | | |
| | | /** |
| | | * 通讯协议 |
| | | */ |
| | | private String protocol; |
| | | |
| | | /** |
| | | * 卡片地址 |
| | |
| | | /** |
| | | * 备注信息 |
| | | */ |
| | | @Length(max = 200) |
| | | private String remarks; |
| | | |
| | | /** |
| | | * 订单号 |
| | | */ |
| | | private String orderNo; |
| | | } |