10 changed files with 673 additions and 2 deletions
@ -0,0 +1,106 @@ |
|||||
|
/** |
||||
|
* Copyright 2018 人人开源 https://www.renren.io
|
||||
|
* <p> |
||||
|
* This program is free software: you can redistribute it and/or modify |
||||
|
* it under the terms of the GNU General Public License as published by |
||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||
|
* (at your option) any later version. |
||||
|
* <p> |
||||
|
* This program is distributed in the hope that it will be useful, |
||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
* GNU General Public License for more details. |
||||
|
* <p> |
||||
|
* You should have received a copy of the GNU General Public License |
||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
*/ |
||||
|
|
||||
|
package com.elink.esua.epdc.dto.interfacelog; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.Date; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 诉求上报接口日志表 诉求上报接口日志表 重新上报 |
||||
|
* |
||||
|
* @author elink elink@elink-cn.com |
||||
|
* @since v1.0.0 2023-07-27 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ItemReportInterfaceLogAgainDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* 主键 |
||||
|
*/ |
||||
|
private String id; |
||||
|
|
||||
|
/** |
||||
|
* 项目ID |
||||
|
*/ |
||||
|
private String itemId; |
||||
|
|
||||
|
/** |
||||
|
* 项目处理流程ID |
||||
|
*/ |
||||
|
private String processId; |
||||
|
|
||||
|
/** |
||||
|
* 调用接口名称 |
||||
|
*/ |
||||
|
private String interfaceName; |
||||
|
|
||||
|
/** |
||||
|
* 调用接口地址 |
||||
|
*/ |
||||
|
private String interfaceUrl; |
||||
|
|
||||
|
/** |
||||
|
* 调用是否成功 0-调用失败,1-调用成功 2-重新调用 |
||||
|
*/ |
||||
|
private String successFlag; |
||||
|
|
||||
|
/** |
||||
|
* 调用消息体 |
||||
|
*/ |
||||
|
private String callMsgBody; |
||||
|
|
||||
|
/** |
||||
|
* 调用返回消息体 |
||||
|
*/ |
||||
|
private String returnMsgBody; |
||||
|
|
||||
|
/** |
||||
|
* 删除标记 |
||||
|
*/ |
||||
|
private String delFlag; |
||||
|
|
||||
|
/** |
||||
|
* 乐观锁 |
||||
|
*/ |
||||
|
private Integer revision; |
||||
|
|
||||
|
/** |
||||
|
* 创建人 |
||||
|
*/ |
||||
|
private String createdBy; |
||||
|
|
||||
|
/** |
||||
|
* 创建时间 |
||||
|
*/ |
||||
|
private Date createdTime; |
||||
|
|
||||
|
/** |
||||
|
* 更新人 |
||||
|
*/ |
||||
|
private String updatedBy; |
||||
|
|
||||
|
/** |
||||
|
* 更新时间 |
||||
|
*/ |
||||
|
private Date updatedTime; |
||||
|
|
||||
|
} |
@ -0,0 +1,95 @@ |
|||||
|
/** |
||||
|
* Copyright 2018 人人开源 https://www.renren.io
|
||||
|
* <p> |
||||
|
* This program is free software: you can redistribute it and/or modify |
||||
|
* it under the terms of the GNU General Public License as published by |
||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||
|
* (at your option) any later version. |
||||
|
* <p> |
||||
|
* This program is distributed in the hope that it will be useful, |
||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
* GNU General Public License for more details. |
||||
|
* <p> |
||||
|
* You should have received a copy of the GNU General Public License |
||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
*/ |
||||
|
|
||||
|
package com.elink.esua.epdc.modules.interfacelog.controller; |
||||
|
|
||||
|
import com.elink.esua.epdc.commons.tools.page.PageData; |
||||
|
import com.elink.esua.epdc.commons.tools.utils.ExcelUtils; |
||||
|
import com.elink.esua.epdc.commons.tools.utils.Result; |
||||
|
import com.elink.esua.epdc.commons.tools.validator.AssertUtils; |
||||
|
import com.elink.esua.epdc.commons.tools.validator.ValidatorUtils; |
||||
|
import com.elink.esua.epdc.commons.tools.validator.group.AddGroup; |
||||
|
import com.elink.esua.epdc.commons.tools.validator.group.UpdateGroup; |
||||
|
import com.elink.esua.epdc.commons.tools.validator.group.DefaultGroup; |
||||
|
|
||||
|
import com.elink.esua.epdc.dto.interfacelog.ItemReportInterfaceLogAgainDTO; |
||||
|
import com.elink.esua.epdc.modules.interfacelog.excel.ItemReportInterfaceLogAgainExcel; |
||||
|
import com.elink.esua.epdc.modules.interfacelog.service.ItemReportInterfaceLogAgainService; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.web.bind.annotation.*; |
||||
|
|
||||
|
import javax.servlet.http.HttpServletResponse; |
||||
|
import java.util.List; |
||||
|
import java.util.Map; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 诉求上报接口日志表 诉求上报接口日志表 重新上报 |
||||
|
* |
||||
|
* @author elink elink@elink-cn.com |
||||
|
* @since v1.0.0 2023-07-27 |
||||
|
*/ |
||||
|
@RestController |
||||
|
@RequestMapping("itemreportinterfacelogagain") |
||||
|
public class ItemReportInterfaceLogAgainController { |
||||
|
|
||||
|
@Autowired |
||||
|
private ItemReportInterfaceLogAgainService itemReportInterfaceLogAgainService; |
||||
|
|
||||
|
@GetMapping("page") |
||||
|
public Result<PageData<ItemReportInterfaceLogAgainDTO>> page(@RequestParam Map<String, Object> params){ |
||||
|
PageData<ItemReportInterfaceLogAgainDTO> page = itemReportInterfaceLogAgainService.page(params); |
||||
|
return new Result<PageData<ItemReportInterfaceLogAgainDTO>>().ok(page); |
||||
|
} |
||||
|
|
||||
|
@GetMapping("{id}") |
||||
|
public Result<ItemReportInterfaceLogAgainDTO> get(@PathVariable("id") String id){ |
||||
|
ItemReportInterfaceLogAgainDTO data = itemReportInterfaceLogAgainService.get(id); |
||||
|
return new Result<ItemReportInterfaceLogAgainDTO>().ok(data); |
||||
|
} |
||||
|
|
||||
|
@PostMapping |
||||
|
public Result save(@RequestBody ItemReportInterfaceLogAgainDTO dto){ |
||||
|
//效验数据
|
||||
|
ValidatorUtils.validateEntity(dto, AddGroup.class, DefaultGroup.class); |
||||
|
itemReportInterfaceLogAgainService.save(dto); |
||||
|
return new Result(); |
||||
|
} |
||||
|
|
||||
|
@PutMapping |
||||
|
public Result update(@RequestBody ItemReportInterfaceLogAgainDTO dto){ |
||||
|
//效验数据
|
||||
|
ValidatorUtils.validateEntity(dto, UpdateGroup.class, DefaultGroup.class); |
||||
|
itemReportInterfaceLogAgainService.update(dto); |
||||
|
return new Result(); |
||||
|
} |
||||
|
|
||||
|
@DeleteMapping |
||||
|
public Result delete(@RequestBody String[] ids){ |
||||
|
//效验数据
|
||||
|
AssertUtils.isArrayEmpty(ids, "id"); |
||||
|
itemReportInterfaceLogAgainService.delete(ids); |
||||
|
return new Result(); |
||||
|
} |
||||
|
|
||||
|
@GetMapping("export") |
||||
|
public void export(@RequestParam Map<String, Object> params, HttpServletResponse response) throws Exception { |
||||
|
List<ItemReportInterfaceLogAgainDTO> list = itemReportInterfaceLogAgainService.list(params); |
||||
|
ExcelUtils.exportExcelToTarget(response, null, list, ItemReportInterfaceLogAgainExcel.class); |
||||
|
} |
||||
|
|
||||
|
} |
@ -0,0 +1,33 @@ |
|||||
|
/** |
||||
|
* Copyright 2018 人人开源 https://www.renren.io
|
||||
|
* <p> |
||||
|
* This program is free software: you can redistribute it and/or modify |
||||
|
* it under the terms of the GNU General Public License as published by |
||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||
|
* (at your option) any later version. |
||||
|
* <p> |
||||
|
* This program is distributed in the hope that it will be useful, |
||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
* GNU General Public License for more details. |
||||
|
* <p> |
||||
|
* You should have received a copy of the GNU General Public License |
||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
*/ |
||||
|
|
||||
|
package com.elink.esua.epdc.modules.interfacelog.dao; |
||||
|
|
||||
|
import com.elink.esua.epdc.commons.mybatis.dao.BaseDao; |
||||
|
import com.elink.esua.epdc.modules.interfacelog.entity.ItemReportInterfaceLogAgainEntity; |
||||
|
import org.apache.ibatis.annotations.Mapper; |
||||
|
|
||||
|
/** |
||||
|
* 诉求上报接口日志表 诉求上报接口日志表 重新上报 |
||||
|
* |
||||
|
* @author elink elink@elink-cn.com |
||||
|
* @since v1.0.0 2023-07-27 |
||||
|
*/ |
||||
|
@Mapper |
||||
|
public interface ItemReportInterfaceLogAgainDao extends BaseDao<ItemReportInterfaceLogAgainEntity> { |
||||
|
|
||||
|
} |
@ -0,0 +1,76 @@ |
|||||
|
/** |
||||
|
* Copyright 2018 人人开源 https://www.renren.io
|
||||
|
* <p> |
||||
|
* This program is free software: you can redistribute it and/or modify |
||||
|
* it under the terms of the GNU General Public License as published by |
||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||
|
* (at your option) any later version. |
||||
|
* <p> |
||||
|
* This program is distributed in the hope that it will be useful, |
||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
* GNU General Public License for more details. |
||||
|
* <p> |
||||
|
* You should have received a copy of the GNU General Public License |
||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
*/ |
||||
|
|
||||
|
package com.elink.esua.epdc.modules.interfacelog.entity; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||
|
|
||||
|
import com.elink.esua.epdc.commons.mybatis.entity.BaseEpdcEntity; |
||||
|
import lombok.Data; |
||||
|
import lombok.EqualsAndHashCode; |
||||
|
|
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* 诉求上报接口日志表 诉求上报接口日志表 重新上报 |
||||
|
* |
||||
|
* @author elink elink@elink-cn.com |
||||
|
* @since v1.0.0 2023-07-27 |
||||
|
*/ |
||||
|
@Data |
||||
|
@EqualsAndHashCode(callSuper=false) |
||||
|
@TableName("epdc_item_report_interface_log_again") |
||||
|
public class ItemReportInterfaceLogAgainEntity extends BaseEpdcEntity { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* 项目ID |
||||
|
*/ |
||||
|
private String itemId; |
||||
|
|
||||
|
/** |
||||
|
* 项目处理流程ID |
||||
|
*/ |
||||
|
private String processId; |
||||
|
|
||||
|
/** |
||||
|
* 调用接口名称 |
||||
|
*/ |
||||
|
private String interfaceName; |
||||
|
|
||||
|
/** |
||||
|
* 调用接口地址 |
||||
|
*/ |
||||
|
private String interfaceUrl; |
||||
|
|
||||
|
/** |
||||
|
* 调用是否成功 0-调用失败,1-调用成功 2-重新调用 |
||||
|
*/ |
||||
|
private String successFlag; |
||||
|
|
||||
|
/** |
||||
|
* 调用消息体 |
||||
|
*/ |
||||
|
private String callMsgBody; |
||||
|
|
||||
|
/** |
||||
|
* 调用返回消息体 |
||||
|
*/ |
||||
|
private String returnMsgBody; |
||||
|
|
||||
|
} |
@ -0,0 +1,77 @@ |
|||||
|
/** |
||||
|
* Copyright 2018 人人开源 https://www.renren.io
|
||||
|
* <p> |
||||
|
* This program is free software: you can redistribute it and/or modify |
||||
|
* it under the terms of the GNU General Public License as published by |
||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||
|
* (at your option) any later version. |
||||
|
* <p> |
||||
|
* This program is distributed in the hope that it will be useful, |
||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
* GNU General Public License for more details. |
||||
|
* <p> |
||||
|
* You should have received a copy of the GNU General Public License |
||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
*/ |
||||
|
|
||||
|
package com.elink.esua.epdc.modules.interfacelog.excel; |
||||
|
|
||||
|
import cn.afterturn.easypoi.excel.annotation.Excel; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* 诉求上报接口日志表 诉求上报接口日志表 重新上报 |
||||
|
* |
||||
|
* @author elink elink@elink-cn.com |
||||
|
* @since v1.0.0 2023-07-27 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ItemReportInterfaceLogAgainExcel { |
||||
|
|
||||
|
@Excel(name = "主键") |
||||
|
private String id; |
||||
|
|
||||
|
@Excel(name = "项目ID") |
||||
|
private String itemId; |
||||
|
|
||||
|
@Excel(name = "项目处理流程ID") |
||||
|
private String processId; |
||||
|
|
||||
|
@Excel(name = "调用接口名称") |
||||
|
private String interfaceName; |
||||
|
|
||||
|
@Excel(name = "调用接口地址") |
||||
|
private String interfaceUrl; |
||||
|
|
||||
|
@Excel(name = "调用是否成功 0-调用失败,1-调用成功 2-重新调用") |
||||
|
private String successFlag; |
||||
|
|
||||
|
@Excel(name = "调用消息体") |
||||
|
private String callMsgBody; |
||||
|
|
||||
|
@Excel(name = "调用返回消息体") |
||||
|
private String returnMsgBody; |
||||
|
|
||||
|
@Excel(name = "删除标记") |
||||
|
private String delFlag; |
||||
|
|
||||
|
@Excel(name = "乐观锁") |
||||
|
private Integer revision; |
||||
|
|
||||
|
@Excel(name = "创建人") |
||||
|
private String createdBy; |
||||
|
|
||||
|
@Excel(name = "创建时间") |
||||
|
private Date createdTime; |
||||
|
|
||||
|
@Excel(name = "更新人") |
||||
|
private String updatedBy; |
||||
|
|
||||
|
@Excel(name = "更新时间") |
||||
|
private Date updatedTime; |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,47 @@ |
|||||
|
/** |
||||
|
* Copyright 2018 人人开源 https://www.renren.io
|
||||
|
* <p> |
||||
|
* This program is free software: you can redistribute it and/or modify |
||||
|
* it under the terms of the GNU General Public License as published by |
||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||
|
* (at your option) any later version. |
||||
|
* <p> |
||||
|
* This program is distributed in the hope that it will be useful, |
||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
* GNU General Public License for more details. |
||||
|
* <p> |
||||
|
* You should have received a copy of the GNU General Public License |
||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
*/ |
||||
|
|
||||
|
package com.elink.esua.epdc.modules.interfacelog.redis; |
||||
|
|
||||
|
import com.elink.esua.epdc.commons.tools.redis.RedisUtils; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.stereotype.Component; |
||||
|
|
||||
|
/** |
||||
|
* 诉求上报接口日志表 诉求上报接口日志表 重新上报 |
||||
|
* |
||||
|
* @author elink elink@elink-cn.com |
||||
|
* @since v1.0.0 2023-07-27 |
||||
|
*/ |
||||
|
@Component |
||||
|
public class ItemReportInterfaceLogAgainRedis { |
||||
|
@Autowired |
||||
|
private RedisUtils redisUtils; |
||||
|
|
||||
|
public void delete(Object[] ids) { |
||||
|
|
||||
|
} |
||||
|
|
||||
|
public void set(){ |
||||
|
|
||||
|
} |
||||
|
|
||||
|
public String get(String id){ |
||||
|
return null; |
||||
|
} |
||||
|
|
||||
|
} |
@ -0,0 +1,95 @@ |
|||||
|
/** |
||||
|
* Copyright 2018 人人开源 https://www.renren.io
|
||||
|
* <p> |
||||
|
* This program is free software: you can redistribute it and/or modify |
||||
|
* it under the terms of the GNU General Public License as published by |
||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||
|
* (at your option) any later version. |
||||
|
* <p> |
||||
|
* This program is distributed in the hope that it will be useful, |
||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
* GNU General Public License for more details. |
||||
|
* <p> |
||||
|
* You should have received a copy of the GNU General Public License |
||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
*/ |
||||
|
|
||||
|
package com.elink.esua.epdc.modules.interfacelog.service; |
||||
|
|
||||
|
import com.elink.esua.epdc.commons.mybatis.service.BaseService; |
||||
|
import com.elink.esua.epdc.commons.tools.page.PageData; |
||||
|
import com.elink.esua.epdc.dto.interfacelog.ItemReportInterfaceLogAgainDTO; |
||||
|
import com.elink.esua.epdc.modules.interfacelog.entity.ItemReportInterfaceLogAgainEntity; |
||||
|
|
||||
|
import java.util.List; |
||||
|
import java.util.Map; |
||||
|
|
||||
|
/** |
||||
|
* 诉求上报接口日志表 诉求上报接口日志表 重新上报 |
||||
|
* |
||||
|
* @author elink elink@elink-cn.com |
||||
|
* @since v1.0.0 2023-07-27 |
||||
|
*/ |
||||
|
public interface ItemReportInterfaceLogAgainService extends BaseService<ItemReportInterfaceLogAgainEntity> { |
||||
|
|
||||
|
/** |
||||
|
* 默认分页 |
||||
|
* |
||||
|
* @param params |
||||
|
* @return PageData<ItemReportInterfaceLogAgainDTO> |
||||
|
* @author generator |
||||
|
* @date 2023-07-27 |
||||
|
*/ |
||||
|
PageData<ItemReportInterfaceLogAgainDTO> page(Map<String, Object> params); |
||||
|
|
||||
|
/** |
||||
|
* 默认查询 |
||||
|
* |
||||
|
* @param params |
||||
|
* @return java.util.List<ItemReportInterfaceLogAgainDTO> |
||||
|
* @author generator |
||||
|
* @date 2023-07-27 |
||||
|
*/ |
||||
|
List<ItemReportInterfaceLogAgainDTO> list(Map<String, Object> params); |
||||
|
|
||||
|
/** |
||||
|
* 单条查询 |
||||
|
* |
||||
|
* @param id |
||||
|
* @return ItemReportInterfaceLogAgainDTO |
||||
|
* @author generator |
||||
|
* @date 2023-07-27 |
||||
|
*/ |
||||
|
ItemReportInterfaceLogAgainDTO get(String id); |
||||
|
|
||||
|
/** |
||||
|
* 默认保存 |
||||
|
* |
||||
|
* @param dto |
||||
|
* @return void |
||||
|
* @author generator |
||||
|
* @date 2023-07-27 |
||||
|
*/ |
||||
|
void save(ItemReportInterfaceLogAgainDTO dto); |
||||
|
|
||||
|
/** |
||||
|
* 默认更新 |
||||
|
* |
||||
|
* @param dto |
||||
|
* @return void |
||||
|
* @author generator |
||||
|
* @date 2023-07-27 |
||||
|
*/ |
||||
|
void update(ItemReportInterfaceLogAgainDTO dto); |
||||
|
|
||||
|
/** |
||||
|
* 批量删除 |
||||
|
* |
||||
|
* @param ids |
||||
|
* @return void |
||||
|
* @author generator |
||||
|
* @date 2023-07-27 |
||||
|
*/ |
||||
|
void delete(String[] ids); |
||||
|
} |
@ -0,0 +1,105 @@ |
|||||
|
/** |
||||
|
* Copyright 2018 人人开源 https://www.renren.io
|
||||
|
* <p> |
||||
|
* This program is free software: you can redistribute it and/or modify |
||||
|
* it under the terms of the GNU General Public License as published by |
||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||
|
* (at your option) any later version. |
||||
|
* <p> |
||||
|
* This program is distributed in the hope that it will be useful, |
||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
* GNU General Public License for more details. |
||||
|
* <p> |
||||
|
* You should have received a copy of the GNU General Public License |
||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
*/ |
||||
|
|
||||
|
package com.elink.esua.epdc.modules.interfacelog.service.impl; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
|
import com.elink.esua.epdc.commons.mybatis.service.impl.BaseServiceImpl; |
||||
|
import com.elink.esua.epdc.commons.tools.page.PageData; |
||||
|
import com.elink.esua.epdc.commons.tools.utils.ConvertUtils; |
||||
|
import com.elink.esua.epdc.commons.tools.constant.FieldConstant; |
||||
|
|
||||
|
import com.elink.esua.epdc.dto.interfacelog.ItemReportInterfaceLogAgainDTO; |
||||
|
import com.elink.esua.epdc.modules.interfacelog.dao.ItemReportInterfaceLogAgainDao; |
||||
|
import com.elink.esua.epdc.modules.interfacelog.entity.ItemReportInterfaceLogAgainEntity; |
||||
|
import com.elink.esua.epdc.modules.interfacelog.redis.ItemReportInterfaceLogAgainRedis; |
||||
|
import com.elink.esua.epdc.modules.interfacelog.service.ItemReportInterfaceLogAgainService; |
||||
|
import org.apache.commons.lang3.StringUtils; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.stereotype.Service; |
||||
|
import org.springframework.transaction.annotation.Transactional; |
||||
|
|
||||
|
import java.util.Arrays; |
||||
|
import java.util.List; |
||||
|
import java.util.Map; |
||||
|
|
||||
|
/** |
||||
|
* 诉求上报接口日志表 诉求上报接口日志表 重新上报 |
||||
|
* |
||||
|
* @author elink elink@elink-cn.com |
||||
|
* @since v1.0.0 2023-07-27 |
||||
|
*/ |
||||
|
@Service |
||||
|
public class ItemReportInterfaceLogAgainServiceImpl extends BaseServiceImpl<ItemReportInterfaceLogAgainDao, ItemReportInterfaceLogAgainEntity> implements ItemReportInterfaceLogAgainService { |
||||
|
|
||||
|
@Autowired |
||||
|
private ItemReportInterfaceLogAgainRedis itemReportInterfaceLogAgainRedis; |
||||
|
|
||||
|
@Override |
||||
|
public PageData<ItemReportInterfaceLogAgainDTO> page(Map<String, Object> params) { |
||||
|
IPage<ItemReportInterfaceLogAgainEntity> page = baseDao.selectPage( |
||||
|
getPage(params, FieldConstant.CREATED_TIME, false), |
||||
|
getWrapper(params) |
||||
|
); |
||||
|
return getPageData(page, ItemReportInterfaceLogAgainDTO.class); |
||||
|
} |
||||
|
|
||||
|
@Override |
||||
|
public List<ItemReportInterfaceLogAgainDTO> list(Map<String, Object> params) { |
||||
|
List<ItemReportInterfaceLogAgainEntity> entityList = baseDao.selectList(getWrapper(params)); |
||||
|
|
||||
|
return ConvertUtils.sourceToTarget(entityList, ItemReportInterfaceLogAgainDTO.class); |
||||
|
} |
||||
|
|
||||
|
private QueryWrapper<ItemReportInterfaceLogAgainEntity> getWrapper(Map<String, Object> params){ |
||||
|
String id = (String)params.get(FieldConstant.ID_HUMP); |
||||
|
|
||||
|
QueryWrapper<ItemReportInterfaceLogAgainEntity> wrapper = new QueryWrapper<>(); |
||||
|
wrapper.eq(StringUtils.isNotBlank(id), FieldConstant.ID, id); |
||||
|
|
||||
|
return wrapper; |
||||
|
} |
||||
|
|
||||
|
@Override |
||||
|
public ItemReportInterfaceLogAgainDTO get(String id) { |
||||
|
ItemReportInterfaceLogAgainEntity entity = baseDao.selectById(id); |
||||
|
return ConvertUtils.sourceToTarget(entity, ItemReportInterfaceLogAgainDTO.class); |
||||
|
} |
||||
|
|
||||
|
@Override |
||||
|
@Transactional(rollbackFor = Exception.class) |
||||
|
public void save(ItemReportInterfaceLogAgainDTO dto) { |
||||
|
ItemReportInterfaceLogAgainEntity entity = ConvertUtils.sourceToTarget(dto, ItemReportInterfaceLogAgainEntity.class); |
||||
|
insert(entity); |
||||
|
} |
||||
|
|
||||
|
@Override |
||||
|
@Transactional(rollbackFor = Exception.class) |
||||
|
public void update(ItemReportInterfaceLogAgainDTO dto) { |
||||
|
ItemReportInterfaceLogAgainEntity entity = ConvertUtils.sourceToTarget(dto, ItemReportInterfaceLogAgainEntity.class); |
||||
|
updateById(entity); |
||||
|
} |
||||
|
|
||||
|
@Override |
||||
|
@Transactional(rollbackFor = Exception.class) |
||||
|
public void delete(String[] ids) { |
||||
|
// 逻辑删除(@TableLogic 注解)
|
||||
|
baseDao.deleteBatchIds(Arrays.asList(ids)); |
||||
|
} |
||||
|
|
||||
|
} |
@ -0,0 +1,24 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
|
|
||||
|
<mapper namespace="com.elink.esua.epdc.modules.interfacelog.dao.ItemReportInterfaceLogAgainDao"> |
||||
|
|
||||
|
<resultMap type="com.elink.esua.epdc.modules.interfacelog.entity.ItemReportInterfaceLogAgainEntity" id="itemReportInterfaceLogAgainMap"> |
||||
|
<result property="id" column="ID"/> |
||||
|
<result property="itemId" column="ITEM_ID"/> |
||||
|
<result property="processId" column="PROCESS_ID"/> |
||||
|
<result property="interfaceName" column="INTERFACE_NAME"/> |
||||
|
<result property="interfaceUrl" column="INTERFACE_URL"/> |
||||
|
<result property="successFlag" column="SUCCESS_FLAG"/> |
||||
|
<result property="callMsgBody" column="CALL_MSG_BODY"/> |
||||
|
<result property="returnMsgBody" column="RETURN_MSG_BODY"/> |
||||
|
<result property="delFlag" column="DEL_FLAG"/> |
||||
|
<result property="revision" column="REVISION"/> |
||||
|
<result property="createdBy" column="CREATED_BY"/> |
||||
|
<result property="createdTime" column="CREATED_TIME"/> |
||||
|
<result property="updatedBy" column="UPDATED_BY"/> |
||||
|
<result property="updatedTime" column="UPDATED_TIME"/> |
||||
|
</resultMap> |
||||
|
|
||||
|
|
||||
|
</mapper> |
Loading…
Reference in new issue