old mode 100644
new mode 100755
| | |
| | | import com.baomidou.mybatisplus.annotation.TableLogic; |
| | | import lombok.Data; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.ToString; |
| | | import org.jeecg.modules.dry.vo.RealTimeDataVo; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | import org.jeecgframework.poi.excel.annotation.Excel; |
| | |
| | | @TableName("dry_equipment") |
| | | @Accessors(chain = true) |
| | | @EqualsAndHashCode(callSuper = false) |
| | | @ToString |
| | | @ApiModel(value="dry_equipment对象", description="干燥机") |
| | | public class DryEquipment implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | @ApiModelProperty(value = "租户id") |
| | | private Integer tenantId; |
| | | |
| | | /**设备IP*/ |
| | | @Excel(name = "设备IP", width = 15) |
| | | @ApiModelProperty(value = "设备IP") |
| | | private String ip; |
| | | |
| | | public DryEquipment() { |
| | | } |
| | | public DryEquipment(RealTimeDataVo realTimeDataVo) { |