|
|
@ -8,6 +8,7 @@ import com.epmet.commons.tools.page.PageData; |
|
|
|
import com.epmet.commons.tools.utils.ConvertUtils; |
|
|
|
import com.epmet.dao.IcEventReplyDao; |
|
|
|
import com.epmet.dto.IcEventReplyDTO; |
|
|
|
import com.epmet.dto.form.IcEventReplyFormDTO; |
|
|
|
import com.epmet.dto.result.IcEventProcessListResultDTO; |
|
|
|
import com.epmet.entity.IcEventReplyEntity; |
|
|
|
import com.epmet.service.IcEventReplyService; |
|
|
@ -99,4 +100,16 @@ public class IcEventReplyServiceImpl extends BaseServiceImpl<IcEventReplyDao, Ic |
|
|
|
return list; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public void updateByReplyId(IcEventReplyFormDTO formDTO) { |
|
|
|
if (null != formDTO.getId()) { |
|
|
|
IcEventReplyEntity entity = baseDao.selectById(formDTO.getId()); |
|
|
|
entity.setManageStatus(formDTO.getManageStatus()); |
|
|
|
entity.setManageResi(formDTO.getManageResi()); |
|
|
|
entity.setManageResiTel(formDTO.getManageResiTel()); |
|
|
|
entity.setManageTime(formDTO.getManageTime()); |
|
|
|
baseDao.updateById(entity); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |