| | |
| | | * 重点监管装置/设备 详细信息(KeypointEquipmentInfo)表实体类 |
| | | * |
| | | * @author xurui |
| | | * @since 2022-07-19 13:36:27 |
| | | * @since 2022-08-09 09:39:39 |
| | | */ |
| | | @SuppressWarnings("serial") |
| | | @TableName("keypoint_equipment_info") |
| | |
| | | public void setConnectPersonId(Long connectPersonId) { |
| | | this.connectPersonId = connectPersonId; |
| | | } |
| | | //联系人名称 |
| | | private String connectPersonName; |
| | | |
| | | public String getConnectPersonName() { |
| | | return connectPersonName; |
| | | } |
| | | |
| | | public void setConnectPersonName(String connectPersonName) { |
| | | this.connectPersonName = connectPersonName; |
| | | } |
| | | //录入人/外键 |
| | | private Long inputPersonId; |
| | | |
| | |
| | | public void setInputPersonId(Long inputPersonId) { |
| | | this.inputPersonId = inputPersonId; |
| | | } |
| | | //录入人名称 |
| | | private String inputPersonName; |
| | | |
| | | public String getInputPersonName() { |
| | | return inputPersonName; |
| | | } |
| | | |
| | | public void setInputPersonName(String inputPersonName) { |
| | | this.inputPersonName = inputPersonName; |
| | | } |
| | | //责任人/外键 |
| | | private Long responsibilityPersonId; |
| | | |
| | |
| | | public void setResponsibilityPersonId(Long responsibilityPersonId) { |
| | | this.responsibilityPersonId = responsibilityPersonId; |
| | | } |
| | | //责任人名称 |
| | | private String responsibilityPersonName; |
| | | |
| | | public String getResponsibilityPersonName() { |
| | | return responsibilityPersonName; |
| | | } |
| | | |
| | | public void setResponsibilityPersonName(String responsibilityPersonName) { |
| | | this.responsibilityPersonName = responsibilityPersonName; |
| | | } |
| | | //装置部位分类 1:关键装置 2:重点部位 |
| | | private Integer partType; |
| | | |