| | |
| | | package org.sxkj.fw.device.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | import org.springblade.core.mp.base.BaseEntity; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * 设备表 实体类 |
| | |
| | | @ApiModelProperty(value = "是否启用:1启用 0禁用") |
| | | private Integer isEnabled; |
| | | |
| | | /** |
| | | * 使用日期 |
| | | */ |
| | | @ApiModelProperty(value = "使用日期") |
| | | // @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date useDate; |
| | | |
| | | /** |
| | | * 使用年限(单位:年) |
| | | */ |
| | | @ApiModelProperty(value = "使用年限(单位:年)") |
| | | private Integer serviceLife; |
| | | |
| | | } |