|
|
|
@@ -22,55 +22,6 @@ public class WxAdminLogController extends BaseController { |
|
|
|
@Autowired |
|
|
|
private WxAdminLogService wxAdminLogService; |
|
|
|
|
|
|
|
@ApiOperation("分页列表接口") |
|
|
|
@GetMapping("list") |
|
|
|
@ApiImplicitParams({ |
|
|
|
@ApiImplicitParam(name = "pageNum", value = "页数", dataType = "int", paramType = "query", required = true), |
|
|
|
@ApiImplicitParam(name = "pageSize", value = "每页条数", dataType = "int", paramType = "query", required = true)}) |
|
|
|
public ResultData list(@ModelAttribute WxAdminLog wxAdminLog, Integer pageNum, Integer pageSize) { |
|
|
|
logger.debug("[" + getIpAddr() + "] WxAdminLogController::list"); |
|
|
|
if (null == wxAdminLog) wxAdminLog = new WxAdminLog(); |
|
|
|
final PageInfo<WxAdminLog> page = wxAdminLogService.listAsPage(wxAdminLog, pageNum, pageSize); |
|
|
|
return new ResultData(page); |
|
|
|
} |
|
|
|
|
|
|
|
@ApiOperation("新增接口") |
|
|
|
@PostMapping("add") |
|
|
|
public ResultData add(@RequestBody WxAdminLog wxAdminLog) { |
|
|
|
logger.debug("[" + getIpAddr() + "] WxAdminLogController::add"); |
|
|
|
//Assert.notNull(wxAdminLog.getName(), "角色名不能为空"); |
|
|
|
//Assert.isTrue(!checkUnique(sysRole.getName(), null), "重复的角色名"); |
|
|
|
wxAdminLogService.saveOrUpdate(wxAdminLog); |
|
|
|
return new ResultData(); |
|
|
|
} |
|
|
|
|
|
|
|
@ApiOperation("根据id更新接口") |
|
|
|
@PostMapping("update") |
|
|
|
public ResultData update(@RequestBody WxAdminLog wxAdminLog) { |
|
|
|
logger.debug("[" + getIpAddr() + "] WxAdminLogController::update"); |
|
|
|
String tenantId = getTenantId(); |
|
|
|
wxAdminLog.setTenantId(tenantId); |
|
|
|
wxAdminLogService.saveOrUpdate(wxAdminLog); |
|
|
|
return new ResultData(); |
|
|
|
} |
|
|
|
|
|
|
|
@ApiOperation("根据id删除接口") |
|
|
|
@GetMapping("/del") |
|
|
|
@ApiImplicitParam(name = "id", value = "id", dataType = "Long", paramType = "query", required = true) |
|
|
|
public ResultData delete(Long id) { |
|
|
|
logger.debug("[" + getIpAddr() + "] WxAdminLogController::delete"); |
|
|
|
wxAdminLogService.deleteById(id); |
|
|
|
return new ResultData(Result.SUCCESS, "删除成功", null); |
|
|
|
} |
|
|
|
|
|
|
|
@ApiOperation("根据id查询接口") |
|
|
|
@GetMapping("/findById") |
|
|
|
@ApiImplicitParam(name = "id", value = "id", dataType = "Long", paramType = "query", required = true) |
|
|
|
public ResultData findById(Long id) { |
|
|
|
logger.debug("[" + getIpAddr() + "] WxAdminLogController::findById"); |
|
|
|
return new ResultData(Result.SUCCESS, "查询成功", wxAdminLogService.getById(id)); |
|
|
|
} |
|
|
|
|
|
|
|
@ApiOperation("PV计数") |
|
|
|
@PostMapping("pvlog") |
|
|
|
public ResultData pvLog(@RequestBody WxAdminLog wxAdminLog) { |
|
|
|
|