增加指标分类删除
This commit is contained in:
parent
3b261f2d6d
commit
9b91874ff2
@ -8,15 +8,16 @@ import com.lz.common.utils.StringUtil;
|
|||||||
import com.lz.modules.performance.dto.IndicatorTypeDto;
|
import com.lz.modules.performance.dto.IndicatorTypeDto;
|
||||||
import com.lz.modules.performance.entity.IndicatorType;
|
import com.lz.modules.performance.entity.IndicatorType;
|
||||||
import com.lz.modules.performance.req.IndicatorReq;
|
import com.lz.modules.performance.req.IndicatorReq;
|
||||||
|
import com.lz.modules.performance.service.IndicatorLibraryService;
|
||||||
import com.lz.modules.performance.service.IndicatorTypeService;
|
import com.lz.modules.performance.service.IndicatorTypeService;
|
||||||
import io.swagger.annotations.Api;
|
import io.swagger.annotations.Api;
|
||||||
import io.swagger.annotations.ApiOperation;
|
import io.swagger.annotations.ApiOperation;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.*;
|
||||||
import org.springframework.web.bind.annotation.RequestBody;
|
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
|
||||||
import org.springframework.web.bind.annotation.RestController;
|
|
||||||
|
|
||||||
|
@Slf4j
|
||||||
@RestController
|
@RestController
|
||||||
@RequestMapping("/indicatorType")
|
@RequestMapping("/indicatorType")
|
||||||
@Api(value = "指标分类相关接口", tags = { "指标分类相关接口" })
|
@Api(value = "指标分类相关接口", tags = { "指标分类相关接口" })
|
||||||
@ -25,6 +26,8 @@ public class IndicatorTypeController {
|
|||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private IndicatorTypeService indicatorTypeService;
|
private IndicatorTypeService indicatorTypeService;
|
||||||
|
@Autowired
|
||||||
|
private IndicatorLibraryService indicatorLibraryService;
|
||||||
|
|
||||||
|
|
||||||
@PostMapping("/list")
|
@PostMapping("/list")
|
||||||
@ -55,4 +58,20 @@ public class IndicatorTypeController {
|
|||||||
return success ? R.ok():R.error();
|
return success ? R.ok():R.error();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@GetMapping("/delete")
|
||||||
|
@ApiOperation("删除指标分类")
|
||||||
|
public R delete(@RequestParam @ApiParam(value = "删除指标分类id",name = "id") Long id) {
|
||||||
|
try {
|
||||||
|
indicatorTypeService.deleteIndicatorTypeById(id);
|
||||||
|
indicatorLibraryService.deleteIndicatorLibrarysIndicatorType(id.intValue());
|
||||||
|
|
||||||
|
} catch (Exception e) {
|
||||||
|
log.error("删除指标异常",e);
|
||||||
|
return R.error();
|
||||||
|
}
|
||||||
|
return R.ok();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -43,4 +43,6 @@ public interface IndicatorLibraryMapper extends BaseMapper<IndicatorLibrary> {
|
|||||||
void updateIndicatorLibrarysMove(@Param("ids")List<Long> ids,@Param("indicatorType")Long indicatorType);
|
void updateIndicatorLibrarysMove(@Param("ids")List<Long> ids,@Param("indicatorType")Long indicatorType);
|
||||||
|
|
||||||
List<StatisticalIndicatorTypeDto> statisticalByIndicatorType();
|
List<StatisticalIndicatorTypeDto> statisticalByIndicatorType();
|
||||||
|
|
||||||
|
int deleteIndicatorLibrarysByIndicatorType(@Param("indicatorType") Integer indicatorType);
|
||||||
}
|
}
|
||||||
@ -43,5 +43,7 @@ public interface IndicatorLibraryService extends IService<IndicatorLibrary> {
|
|||||||
|
|
||||||
List<StatisticalIndicatorTypeDto> statisticalByIndicatorType();
|
List<StatisticalIndicatorTypeDto> statisticalByIndicatorType();
|
||||||
|
|
||||||
|
int deleteIndicatorLibrarysIndicatorType(Integer indicatorType);
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -116,4 +116,9 @@ public class IndicatorLibraryServiceImpl extends ServiceImpl<IndicatorLibraryMap
|
|||||||
dtos.add(0,dto);
|
dtos.add(0,dto);
|
||||||
return dtos;
|
return dtos;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int deleteIndicatorLibrarysIndicatorType(Integer indicatorType) {
|
||||||
|
return indicatorLibraryMapper.deleteIndicatorLibrarysByIndicatorType(indicatorType);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -131,5 +131,10 @@
|
|||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
|
||||||
|
<update id="deleteIndicatorLibrarysByIndicatorType" parameterType="java.lang.Integer">
|
||||||
|
update lz_indicator_library set is_delete = 1 where indicator_type=#{indicatorType}
|
||||||
|
</update>
|
||||||
|
|
||||||
|
|
||||||
</mapper>
|
</mapper>
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user