Newer
Older
huludao / src / main / java / com / newfiber / modules / inspection / request / InspectionUserItemCheckReq.java
package com.newfiber.modules.inspection.request;

import io.swagger.annotations.ApiModelProperty;
import javax.validation.constraints.NotNull;
import lombok.Data;

/**
* 修改用户巡检检测项
*
* @author : xiongk
* @since : 2020-11-06 10:00
*/
@Data
public class InspectionUserItemCheckReq {

      /**
      * 编号
      */
      @NotNull(message = "id不能为空")
      @ApiModelProperty(name = "id", value = "编号", position = 10)
      private Integer id;

      /**
      * 巡检结果(0正常/1异常)
      */
      @ApiModelProperty(name = "result", value = "巡检结果(0正常/1异常)", position = 70)
      private String result;

      /**
       * 结果说明
       */
      @ApiModelProperty(name = "resultNote", value = "结果说明", position = 70)
      private String resultNote;

      /**
      * 精度
      */
      @ApiModelProperty(name = "pointx", value = "精度", position = 80)
      private String pointx;

      /**
      * 纬度
      */
      @ApiModelProperty(name = "pointy", value = "纬度", position = 90)
      private String pointy;

      /**
      * 巡检IP地址
      */
      @ApiModelProperty(name = "ip", value = "巡检IP地址", position = 100)
      private String ip;

}