| | |
| | | import com.java110.api.bmo.complaint.IComplaintBMO; |
| | | import com.java110.core.context.DataFlowContext; |
| | | import com.java110.core.factory.GenerateCodeFactory; |
| | | import com.java110.intf.common.IComplaintUserInnerServiceSMO; |
| | | import com.java110.intf.store.IComplaintInnerServiceSMO; |
| | | import com.java110.dto.complaint.ComplaintDto; |
| | | import com.java110.po.complaint.ComplaintPo; |
| | |
| | | |
| | | @Autowired |
| | | private IComplaintInnerServiceSMO complaintInnerServiceSMOImpl; |
| | | |
| | | @Autowired |
| | | private IComplaintUserInnerServiceSMO complaintUserInnerServiceSMOImpl; |
| | | |
| | | /** |
| | | * 添加投诉建议信息 |
| | |
| | | |
| | | /** |
| | | * 添加小区信息 |
| | | * 感谢 QQ号 1464955294 分享解决 删除投诉 时 未删除流程bug |
| | | * |
| | | * @param paramInJson 接口调用放传入入参 |
| | | * @param dataFlowContext 数据上下文 |
| | |
| | | public void deleteComplaint(JSONObject paramInJson, DataFlowContext dataFlowContext) { |
| | | ComplaintPo complaintPo = BeanConvertUtil.covertBean(paramInJson, ComplaintPo.class); |
| | | super.delete(dataFlowContext, complaintPo, BusinessTypeConstant.BUSINESS_TYPE_DELETE_COMPLAINT); |
| | | ComplaintDto complaintDto = new ComplaintDto(); |
| | | complaintDto.setTaskId(complaintPo.getTaskId()); |
| | | complaintUserInnerServiceSMOImpl.deleteTask(complaintDto); |
| | | } |
| | | |
| | | /** |