Commit c2fab897 authored by 周昊's avatar 周昊

1、添加固有风险特种设备证书编号字段

parent 4b2f2cb9
......@@ -60,6 +60,12 @@ public class RiskPlanInherentList extends BaseEntity {
@TableField("special_equipment")
private Boolean specialEquipment;
/**
* 特种设备证书编号
*/
@TableField("equipment_number")
private String equipmentNumber;
/**
* 安全警示标志
*/
......
......@@ -51,6 +51,11 @@ public class RiskInherentListSaveDto {
*/
private Boolean specialEquipment;
/**
* 特种设备证书编号
*/
private String equipmentNumber;
/**
* 安全警示标志
*/
......
package com.censoft.censoftrongtong.domain.dto;
import com.baomidou.mybatisplus.annotation.TableField;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.system.domain.SysUploadFile;
import lombok.Data;
......@@ -65,6 +64,11 @@ public class RiskPlanAppInherentListDetailsDto {
*/
private Boolean specialEquipment;
/**
* 特种设备证书编号
*/
private String equipmentNumber;
/**
* 安全警示标志
*/
......
......@@ -322,6 +322,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
rpil.`name`,
rpil.point_type as pointType,
rpil.special_equipment as specialEquipment,
rpil.equipment_number as equipmentNumber,
rpil.safety_warning_signs as safetyWarningSigns,
rpil.factor,
rpil.type,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment