文件名从 lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/base/model/RepairDepartIdModel.java 修改 |
| | |
| | | package org.jeecg.modules.eam.base.model; |
| | | package org.jeecg.modules.system.model; |
| | | |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.experimental.Accessors; |
| | | import org.jeecg.modules.eam.base.entity.EamBaseRepairDepart; |
| | | import org.jeecg.modules.system.entity.EamBaseRepairDepart; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.ArrayList; |
| | |
| | | * |
| | | * @return |
| | | */ |
| | | public RepairDepartIdModel convertByUserMaintainDepart(EamBaseRepairDepart mdcMaintainDepart) { |
| | | this.key = mdcMaintainDepart.getId(); |
| | | this.value = mdcMaintainDepart.getId(); |
| | | this.title = mdcMaintainDepart.getDepartName(); |
| | | public RepairDepartIdModel convertByUserRepairDepart(EamBaseRepairDepart eamBaseRepairDepart) { |
| | | this.key = eamBaseRepairDepart.getId(); |
| | | this.value = eamBaseRepairDepart.getId(); |
| | | this.title = eamBaseRepairDepart.getDepartName(); |
| | | return this; |
| | | } |
| | | } |