| | |
| | | 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; |
| | |
| | | * 设备维修明细(EquipmentRepairDetail)表实体类 |
| | | * |
| | | * @author xurui |
| | | * @since 2022-07-19 15:10:57 |
| | | * @since 2022-08-03 11:17:00 |
| | | */ |
| | | @SuppressWarnings("serial") |
| | | @TableName("equipment_repair_detail") |
| | |
| | | public void setRepairPersonId(Long repairPersonId) { |
| | | this.repairPersonId = repairPersonId; |
| | | } |
| | | //维修负责人名称 |
| | | private String repairPersonName; |
| | | |
| | | public String getRepairPersonName() { |
| | | return repairPersonName; |
| | | } |
| | | |
| | | public void setRepairPersonName(String repairPersonName) { |
| | | this.repairPersonName = repairPersonName; |
| | | } |
| | | //维修开始日期 |
| | | private Timestamp repairStartDate; |
| | | |
| | |
| | | public void setRepairPersonDepartmentId(Long repairPersonDepartmentId) { |
| | | this.repairPersonDepartmentId = repairPersonDepartmentId; |
| | | } |
| | | //维修负责人单位名称 |
| | | private String repairPersonDepartmentName; |
| | | |
| | | public String getRepairPersonDepartmentName() { |
| | | return repairPersonDepartmentName; |
| | | } |
| | | |
| | | public void setRepairPersonDepartmentName(String repairPersonDepartmentName) { |
| | | this.repairPersonDepartmentName = repairPersonDepartmentName; |
| | | } |
| | | //维修情况 |
| | | private String repairMemo; |
| | | |