|
@@ -5,6 +5,8 @@ import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import java.time.LocalDateTime;
|
|
|
import java.io.Serializable;
|
|
|
+
|
|
|
+import com.ruoyi.common.core.domain.AbstractEntity;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
@@ -24,12 +26,12 @@ import lombok.experimental.Accessors;
|
|
|
@Accessors(chain = true)
|
|
|
@TableName("js_instrument_maintenance")
|
|
|
@ApiModel(value="JsInstrumentMaintenance对象", description="v2.0检验仪器维护登记")
|
|
|
-public class JsInstrumentMaintenance implements Serializable {
|
|
|
+public class JsInstrumentMaintenance extends AbstractEntity implements Serializable {
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
- @TableId(value = "id", type = IdType.AUTO)
|
|
|
- private Integer id;
|
|
|
+// @TableId(value = "id", type = IdType.AUTO)
|
|
|
+// private Integer id;
|
|
|
|
|
|
@ApiModelProperty(value = "维护时间")
|
|
|
private String maintenanceTime;
|
|
@@ -51,4 +53,13 @@ public class JsInstrumentMaintenance implements Serializable {
|
|
|
|
|
|
@ApiModelProperty(value = "维护人")
|
|
|
private String maintenanceUser;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "规格型号")
|
|
|
+ private String specificationNoGroup;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "故障描述")
|
|
|
+ private String faultDetail;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "维修结果")
|
|
|
+ private String repairDetail;
|
|
|
}
|