| | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | 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.springframework.format.annotation.DateTimeFormat; |
| | | |
| | |
| | | */ |
| | | @Data |
| | | @TableName("device_ledger") |
| | | @ApiModel |
| | | public class DeviceLedger { |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 设备名称 |
| | | */ |
| | | @ApiModelProperty("设备名称") |
| | | private String deviceName; |
| | | |
| | | /** |
| | | * 规格型号 |
| | | */ |
| | | @ApiModelProperty("规格型号") |
| | | private String deviceModel; |
| | | |
| | | /** |