| | |
| | | package com.gkhy.safePlatform.equipment.entity; |
| | | |
| | | import java.sql.Timestamp; |
| | | |
| | | import com.gkhy.safePlatform.equipment.entity.BaseDomain; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | |
| | | * 设备检测明细(EquipmentTestDetail)表实体类 |
| | | * |
| | | * @author xurui |
| | | * @since 2022-07-19 15:08:23 |
| | | * @since 2022-08-03 11:15:57 |
| | | */ |
| | | @SuppressWarnings("serial") |
| | | @TableName("equipment_test_detail") |
| | |
| | | public void setTestPersonId(Long testPersonId) { |
| | | this.testPersonId = testPersonId; |
| | | } |
| | | //检测人名称 |
| | | private String testPersonName; |
| | | |
| | | public String getTestPersonName() { |
| | | return testPersonName; |
| | | } |
| | | |
| | | public void setTestPersonName(String testPersonName) { |
| | | this.testPersonName = testPersonName; |
| | | } |
| | | //检测日期 |
| | | private Timestamp testDate; |
| | | |
| | |
| | | public void setTestPersonDepartmentId(Long testPersonDepartmentId) { |
| | | this.testPersonDepartmentId = testPersonDepartmentId; |
| | | } |
| | | //检测人单位名称 |
| | | private String testPersonDepartmentName; |
| | | |
| | | public String getTestPersonDepartmentName() { |
| | | return testPersonDepartmentName; |
| | | } |
| | | |
| | | public void setTestPersonDepartmentName(String testPersonDepartmentName) { |
| | | this.testPersonDepartmentName = testPersonDepartmentName; |
| | | } |
| | | //检测内容 |
| | | private String testMemo; |
| | | |