Merge remote-tracking branch 'origin/main'

This commit is contained in:
LHD_HY 2025-12-19 17:39:06 +08:00
commit 4b39cd5312
13 changed files with 233 additions and 93 deletions

View File

@ -1,4 +1,3 @@
/*
package com.bonus.digital.controller;
import com.bonus.business.controller.tool.MonthPlanExcelExporter;
@ -11,24 +10,15 @@ import com.bonus.digital.dao.DayPlanVo;
import com.bonus.digital.dao.ExportMonthPlanPersonVo;
import com.bonus.digital.dao.MonthlyPlanVo;
import com.bonus.digital.service.DayPlanService;
import com.bonus.digital.service.MonthlyPlanService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.util.List;
*/
/**
* @author 马三炮
* @date 2025/12/16
*//*
@Slf4j
@RestController
@ -38,12 +28,8 @@ public class DayPlanController extends BaseController {
@Resource
private DayPlanService dayPlanService;
*/
/**
* 月计划列表
*//*
@PreAuthorize("@ss.hasPermi('monthly:plan:list')")
//日计划列表
@PreAuthorize("@ss.hasPermi('day:plan:list')")
@GetMapping("/getDayPlanList")
public TableDataInfo getMonthlyPlanList(DayPlanVo dayPlanVo) {
try {
@ -55,16 +41,12 @@ public class DayPlanController extends BaseController {
}
}
*/
/**
* 新增月计划
*//*
@PreAuthorize("@ss.hasPermi('monthly:plan:add')")
@PostMapping("/addMonthlyPlan")
public AjaxResult addMonthlyPlan(MonthlyPlanVo monthlyPlanVo) {
//新增日计划
@PreAuthorize("@ss.hasPermi('day:plan:add')")
@PostMapping("/addDayPlan")
public AjaxResult addMonthlyPlan(@RequestBody DayPlanVo dayPlanVo) {
try {
int res = dayPlanService.addMonthlyPlanList(monthlyPlanVo);
int res = dayPlanService.addMonthlyPlan(dayPlanVo);
if (res > 0) {
return AjaxResult.success();
} else {
@ -75,16 +57,12 @@ public class DayPlanController extends BaseController {
}
}
*/
/**
* 删除月计划
*//*
@PreAuthorize("@ss.hasPermi('monthly:plan:del')")
@PostMapping("/delMonthlyPlan")
public AjaxResult delMonthlyPlan(MonthlyPlanVo monthlyPlanVo) {
//删除日计划
@PreAuthorize("@ss.hasPermi('day:plan:del')")
@PostMapping("/delDayPlan")
public AjaxResult delMonthlyPlan(@RequestBody DayPlanVo dayPlanVo) {
try {
int res = dayPlanService.delMonthlyPlanList(monthlyPlanVo);
int res = dayPlanService.delDayPlan(dayPlanVo);
if (res > 0) {
return AjaxResult.success();
} else {
@ -95,16 +73,12 @@ public class DayPlanController extends BaseController {
}
}
*/
/**
* 修改月计划
*//*
@PreAuthorize("@ss.hasPermi('monthly:plan:update')")
@PostMapping("/updateMonthlyPlan")
public AjaxResult updateMonthlyPlan(MonthlyPlanVo monthlyPlanVo) {
// 修改日计划
@PreAuthorize("@ss.hasPermi('day:plan:update')")
@PostMapping("/updateDayPlan")
public AjaxResult updateMonthlyPlan(@RequestBody DayPlanVo dayPlanVo) {
try {
int res = dayPlanService.updateMonthlyPlan(monthlyPlanVo);
int res = dayPlanService.updateDayPlan(dayPlanVo);
if (res > 0) {
return AjaxResult.success();
} else {
@ -114,13 +88,4 @@ public class DayPlanController extends BaseController {
return AjaxResult.error("系统异常,请联系管理员");
}
}
@Log(title = "导出人员安排表", businessType = BusinessType.EXPORT)
@PreAuthorize("@ss.hasPermi('monthly:plan:export')")
@PostMapping("/export")
public void export(HttpServletResponse response, MonthlyPlanVo monthlyPlanVo) throws IOException {
List<ExportMonthPlanPersonVo> list = dayPlanService.exportMonthlyPlanPerson(monthlyPlanVo);
MonthPlanExcelExporter.exportToExcel(response, list, 2025, 10, "10月运检人员安排");
}
}
*/

View File

@ -4,6 +4,7 @@ import com.bonus.common.core.controller.BaseController;
import com.bonus.common.core.domain.AjaxResult;
import com.bonus.common.core.page.TableDataInfo;
import com.bonus.digital.dao.InspectionStationVo;
import com.bonus.digital.dao.PersonnelClassificationVo;
import com.bonus.digital.dao.PersonnelVo;
import com.bonus.digital.dao.SelectDto;
import com.bonus.digital.service.PersonnelService;
@ -41,6 +42,8 @@ public class PersonnelController extends BaseController {
}
}
//人员所属下拉
//0运检站1项目部
@GetMapping("/getInspectionStationSelect")
public AjaxResult getInspectionStationSelect(InspectionStationVo vo) {
try {
@ -50,6 +53,9 @@ public class PersonnelController extends BaseController {
return AjaxResult.error("接口异常");
}
}
//人员性质/人员分类/岗位下拉
// 0人员分类1人员性质2岗位列表
@GetMapping("/getPersonnelClassificationSelect")
public AjaxResult getPersonnelClassificationSelect(InspectionStationVo vo) {
try {

View File

@ -144,7 +144,7 @@ public class DayPlanVo {
/**
* 创建时间
*/
private String createTime;
private Date createTime;
/**
* 修改人

View File

@ -15,80 +15,80 @@ public class PersonnelVo {
/**
* 人员id
*/
private int id;
private Integer id;
/**
* 人员所属
*/
private int inspectionStationId;
private Integer inspectionStationId;
/**
* 单位名称
*/
private String inspectionStationName;
private String inspectionStationName;
/**
* 姓名
*/
private String name;
private String name;
/**
* 性别
*/
private String sex;
private String sex;
/**
* 电话
*/
private String phone;
private String phone;
/**
* 岗位
*/
private int positionId;
private Integer positionId;
/**
* 岗位
*/
private String positionName;
private String positionName;
/**
* 人员性质
*/
private int personnelNatureId;
private Integer personnelNatureId;
/**
* 人员性质
*/
private String personnelNatureName;
private String personnelNatureName;
/**
* 人员分类
*/
private int personnelClassificationId;
private Integer personnelClassificationId;
/**
* 人员分类
*/
private String personnelClassificationName;
private String personnelClassificationName;
/**
* 长期借调1是0否
*/
private String longTermSecondment;
private String longTermSecondment;
/**
* 是否有效1有效0无效
*/
private String isActive;
private String isActive;
/**
* 创建人
*/
private String createUser;
private String createUser;
/**
* 创建时间
*/

View File

@ -0,0 +1,21 @@
package com.bonus.digital.mapper;
import com.bonus.digital.dao.DayPlanVo;
import com.bonus.digital.dao.MonthlyPlanVo;
import java.util.List;
/**
* @Authorliang.chao
* @Date2025/12/18 - 13:19
*/
public interface DayPlanMapper {
Integer addMonthlyPlan(DayPlanVo dayPlanVo);
Integer delDayPlan(DayPlanVo dayPlanVo);
Integer updateDayPlan(DayPlanVo dayPlanVo);
List<DayPlanVo> getDayPlanList(DayPlanVo dayPlanVo);
}

View File

@ -68,7 +68,5 @@ public interface MonthlyPlanMapper {
*/
int updateMonthlyPlan(MonthlyPlanVo monthlyPlanVo);
List<MonthlyPlanVo> getMonthlyPlanPerson(MonthlyPlanVo monthlyPlanVo);
List<MonthlyPlanVo> getPlanMajorListByMonth(MonthlyPlanVo monthlyPlanVo);
}

View File

@ -16,19 +16,19 @@ public interface PersonnelMapper {
/**
* 新增人员
*/
int addPersonnel(PersonnelVo personnelVo);
Integer addPersonnel(PersonnelVo personnelVo);
/**
* 删除人员
*/
int delPersonnel(PersonnelVo personnelVo);
Integer delPersonnel(PersonnelVo personnelVo);
/**
* 修改人员
*/
int updatePersonnel(PersonnelVo personnelVo);
Integer updatePersonnel(PersonnelVo personnelVo);
List<SelectDto> getInspectionStationSelect(@Param("category") String category);
List<SelectDto> getPersonnelClassificationSelect(String category);
List<SelectDto> getPersonnelClassificationSelect(@Param("category") String category);
}

View File

@ -1,9 +1,21 @@
package com.bonus.digital.service;
import com.bonus.digital.dao.DayPlanVo;
import com.bonus.digital.dao.MonthlyPlanVo;
import java.util.List;
/**
* @Authorliang.chao
* @Date2025/12/18 - 10:48
*/
public interface DayPlanService {
int addMonthlyPlan(DayPlanVo dayPlanVo);
int delDayPlan(DayPlanVo dayPlanVo);
int updateDayPlan(DayPlanVo dayPlanVo);
List<DayPlanVo> getDayPlanList(DayPlanVo dayPlanVo);
}

View File

@ -1,12 +1,43 @@
package com.bonus.digital.service.impl;
import com.bonus.common.utils.SecurityUtils;
import com.bonus.digital.dao.DayPlanVo;
import com.bonus.digital.dao.MonthlyPlanVo;
import com.bonus.digital.mapper.DayPlanMapper;
import com.bonus.digital.service.DayPlanService;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.Date;
import java.util.List;
/**
* @Authorliang.chao
* @Date2025/12/18 - 10:48
*/
@Service
public class DayPlanServiceImpl implements DayPlanService {
@Resource
private DayPlanMapper dayPlanMapper;
@Override
public int addMonthlyPlan(DayPlanVo dayPlanVo) {
dayPlanVo.setCreateUser(SecurityUtils.getUserId().toString());
dayPlanVo.setCreateTime(new Date());
return dayPlanMapper.addMonthlyPlan(dayPlanVo);
}
@Override
public int delDayPlan(DayPlanVo dayPlanVo) {
return dayPlanMapper.delDayPlan(dayPlanVo);
}
@Override
public int updateDayPlan(DayPlanVo dayPlanVo) {
return dayPlanMapper.updateDayPlan(dayPlanVo);
}
@Override
public List<DayPlanVo> getDayPlanList(DayPlanVo dayPlanVo) {
return dayPlanMapper.getDayPlanList(dayPlanVo);
}
}

View File

@ -0,0 +1,111 @@
<?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.bonus.digital.mapper.DayPlanMapper">
<insert id="addMonthlyPlan">
INSERT INTO tb_day_plan
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="dayPlan != null and dayPlan != ''">day_plan,</if>
<if test="plannedWorkload != null and plannedWorkload != ''">planned_workload,</if>
<if test="proposedPersonnel != null and proposedPersonnel != ''">proposed_personnel,</if>
<if test="proposedProficientPersonnel != null and proposedProficientPersonnel != ''">proposed_proficient_personnel,</if>
<if test="proposedProficientDay != null and proposedProficientDay != ''">proposed_proficient_day,</if>
<if test="proposedAssistancePersonnel != null and proposedAssistancePersonnel != ''">proposed_assistance_personnel,</if>
<if test="proposedAssistanceDay != null and proposedAssistanceDay != ''">proposed_assistance_day,</if>
<if test="proposedLongTimeCar != null and proposedLongTimeCar != ''">proposed_long_time_car,</if>
<if test="proposedTemporaryCar != null and proposedTemporaryCar != ''">proposed_temporary_car,</if>
<if test="proposedSubCar != null and proposedSubCar != ''">proposed_sub_car,</if>
<if test="actualProficientPersonnel != null and actualProficientPersonnel != ''">actual_proficient_personnel,</if>
<if test="actualAssistancePersonnel != null and actualAssistancePersonnel != ''">actual_assistance_personnel,</if>
<if test="actualPersonnel != null and actualPersonnel != ''">actual_personnel,</if>
<if test="actualLongTimeCar != null and actualLongTimeCar != ''">actual_long_time_car,</if>
<if test="actualTemporaryCar != null and actualTemporaryCar != ''">actual_temporary_car,</if>
<if test="actualSubCar != null and actualSubCar != ''">actual_sub_car,</if>
<if test="actualWorkContent != null and actualWorkContent != ''">actual_work_content,</if>
<if test="actualWorkload != null and actualWorkload != ''">actual_workload,</if>
<if test="completionPercentage != null and completionPercentage != ''">completion_percentage,</if>
<if test="planCompletionStatus != null and planCompletionStatus != ''">plan_completion_status,</if>
<if test="planChanges != null and planChanges != ''">plan_changes,</if>
<if test="createUser != null and createUser != ''">create_user,</if>
<if test="createTime != null">create_time,</if>
<if test="status != null and status != ''">status,</if>
<if test="dayPlanType != null and dayPlanType != ''">day_plan_type,</if>
</trim>
<trim prefix="VALUES (" suffix=")" suffixOverrides=",">
<if test="dayPlan != null and dayPlan != ''">#{dayPlan},</if>
<if test="plannedWorkload != null and plannedWorkload != ''">#{plannedWorkload},</if>
<if test="proposedPersonnel != null and proposedPersonnel != ''">#{proposedPersonnel},</if>
<if test="proposedProficientPersonnel != null and proposedProficientPersonnel != ''">#{proposedProficientPersonnel},</if>
<if test="proposedProficientDay != null and proposedProficientDay != ''">#{proposedProficientDay},</if>
<if test="proposedAssistancePersonnel != null and proposedAssistancePersonnel != ''">#{proposedAssistancePersonnel},</if>
<if test="proposedAssistanceDay != null and proposedAssistanceDay != ''">#{proposedAssistanceDay},</if>
<if test="proposedLongTimeCar != null and proposedLongTimeCar != ''">#{proposedLongTimeCar},</if>
<if test="proposedTemporaryCar != null and proposedTemporaryCar != ''">#{proposedTemporaryCar},</if>
<if test="proposedSubCar != null and proposedSubCar != ''">#{proposedSubCar},</if>
<if test="actualProficientPersonnel != null and actualProficientPersonnel != ''">#{actualProficientPersonnel},</if>
<if test="actualAssistancePersonnel != null and actualAssistancePersonnel != ''">#{actualAssistancePersonnel},</if>
<if test="actualPersonnel != null and actualPersonnel != ''">#{actualPersonnel},</if>
<if test="actualLongTimeCar != null and actualLongTimeCar != ''">#{actualLongTimeCar},</if>
<if test="actualTemporaryCar != null and actualTemporaryCar != ''">#{actualTemporaryCar},</if>
<if test="actualSubCar != null and actualSubCar != ''">#{actualSubCar},</if>
<if test="actualWorkContent != null and actualWorkContent != ''">#{actualWorkContent},</if>
<if test="actualWorkload != null and actualWorkload != ''">#{actualWorkload},</if>
<if test="completionPercentage != null and completionPercentage != ''">#{completionPercentage},</if>
<if test="planCompletionStatus != null and planCompletionStatus != ''">#{planCompletionStatus},</if>
<if test="planChanges != null and planChanges != ''">#{planChanges},</if>
<if test="createUser != null and createUser != ''">#{createUser},</if>
<if test="createTime != null">#{createTime},</if>
<if test="status != null and status != ''">#{status},</if>
<if test="dayPlanType != null and dayPlanType != ''">#{dayPlanType},</if>
</trim>
</insert>
<update id="updateDayPlan">
UPDATE tb_day_plan
<trim prefix="SET" suffixOverrides=",">
<if test="monthlyPlanId != null">monthly_plan_id = #{monthlyPlanId},</if>
<if test="dayPlan != null and dayPlan != ''">day_plan = #{dayPlan},</if>
<if test="plannedWorkload != null and plannedWorkload != ''">planned_workload = #{plannedWorkload},</if>
<if test="proposedPersonnel != null and proposedPersonnel != ''">proposed_personnel = #{proposedPersonnel},</if>
<if test="proposedProficientPersonnel != null and proposedProficientPersonnel != ''">proposed_proficient_personnel = #{proposedProficientPersonnel},</if>
<if test="proposedProficientDay != null and proposedProficientDay != ''">proposed_proficient_day = #{proposedProficientDay},</if>
<if test="proposedAssistancePersonnel != null and proposedAssistancePersonnel != ''">proposed_assistance_personnel = #{proposedAssistancePersonnel},</if>
<if test="proposedAssistanceDay != null and proposedAssistanceDay != ''">proposed_assistance_day = #{proposedAssistanceDay},</if>
<if test="proposedLongTimeCar != null and proposedLongTimeCar != ''">proposed_long_time_car = #{proposedLongTimeCar},</if>
<if test="proposedTemporaryCar != null and proposedTemporaryCar != ''">proposed_temporary_car = #{proposedTemporaryCar},</if>
<if test="proposedSubCar != null and proposedSubCar != ''">proposed_sub_car = #{proposedSubCar},</if>
<if test="actualProficientPersonnel != null and actualProficientPersonnel != ''">actual_proficient_personnel = #{actualProficientPersonnel},</if>
<if test="actualAssistancePersonnel != null and actualAssistancePersonnel != ''">actual_assistance_personnel = #{actualAssistancePersonnel},</if>
<if test="actualPersonnel != null and actualPersonnel != ''">actual_personnel = #{actualPersonnel},</if>
<if test="actualLongTimeCar != null and actualLongTimeCar != ''">actual_long_time_car = #{actualLongTimeCar},</if>
<if test="actualTemporaryCar != null and actualTemporaryCar != ''">actual_temporary_car = #{actualTemporaryCar},</if>
<if test="actualSubCar != null and actualSubCar != ''">actual_sub_car = #{actualSubCar},</if>
<if test="actualWorkContent != null and actualWorkContent != ''">actual_work_content = #{actualWorkContent},</if>
<if test="actualWorkload != null and actualWorkload != ''">actual_workload = #{actualWorkload},</if>
<if test="completionPercentage != null and completionPercentage != ''">completion_percentage = #{completionPercentage},</if>
<if test="planCompletionStatus != null and planCompletionStatus != ''">plan_completion_status = #{planCompletionStatus},</if>
<if test="planChanges != null and planChanges != ''">plan_changes = #{planChanges},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="updateUser != null and updateUser != ''">update_user = #{updateUser},</if>
<if test="status != null and status != ''">status = #{status},</if>
</trim>
WHERE day_plan_id = #{dayPlanId}
</update>
<delete id="delDayPlan">
update tb_day_plan set is_active = '0' where day_plan_id = #{dayPlanId}
</delete>
<select id="getDayPlanList" resultType="com.bonus.digital.dao.DayPlanVo">
SELECT
tdp.*
FROM
tb_day_plan tdp
LEFT JOIN tb_monthly_plan tmp ON tdp.monthly_plan_id = tmp.monthly_plan_id
LEFT JOIN tb_plan_management tpm ON tmp.plan_management_id = tpm.plan_management_id
WHERE
tdp.is_active = '1'
<if test="startTime != null and endTime != ''">
AND DATE_FORMAT( tdp.day_plan, '%Y-%m-%d' ) BETWEEN #{startTime} AND #{endTime}
</if>
</select>
</mapper>

View File

@ -117,17 +117,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
tmp.actual_working_day
from tb_monthly_plan tmp
left join tb_plan_major tpm on tmp.plan_major_id = tpm.plan_major_id
left join tb_plan_major tpm2 on tmp.plan_major_id = tpm2.plan_major_id
left join tb_plan_major tpm3 on tmp.plan_major_id = tpm3.plan_major_id
where tmp.is_active = '1'
</select>
<select id="getPersonnelArrangementList" resultType="com.bonus.digital.dao.PersonnelArrangementVo">
select personnel_arrangement_id,monthly_plan_id,"day",personnel_names
from tb_personnel_arrangement where monthly_plan_id = #{monthlyPlanId}
</select>
<select id="getMonthlyPlanPerson" resultType="com.bonus.digital.dao.MonthlyPlanVo">
</select>
<select id="getPlanMajorListByMonth" resultType="com.bonus.digital.dao.MonthlyPlanVo">
select tmp.inspection_station_name,

View File

@ -6,14 +6,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<insert id="addPersonnel">
insert into tb_personnel (inspection_station_id,NAME,sex,phone,position_id,personnel_nature_id,
personnel_classification_id,long_term_secondment,create_user,create_time)
values (#{inspectionStationId},#{name},#{sex},#{phone},#{positionId}#{personnelNatureId},
values (#{inspectionStationId},#{name},#{sex},#{phone},#{positionId},#{personnelNatureId},
#{personnelClassificationId},#{longTermSecondment},#{createUser},#{createTime})
</insert>
<update id="updatePersonnel">
update tb_personnel
<trim prefix="set" suffixOverrides=",">
<if test="inspectionStationId!= null " >
inspectionStationId=#{inspectionStationId},
inspection_station_id = #{inspectionStationId},
</if>
<if test="name!= null " >
NAME=#{name},
@ -43,7 +43,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
update_time=#{updateTime},
</if>
</trim>
where personnel_classification_id = #{personnelClassificationId}
where id = #{id}
</update>
<delete id="delPersonnel">
update tb_personnel set is_active ='0' where id = #{id}
@ -52,6 +52,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="getPersonnelList" resultType="com.bonus.digital.dao.PersonnelVo">
select tis.id,
tis.inspection_station_id as inspectionStationId,
tis2.inspection_station_name as inspectionStationName,
tis.name,
tis.sex,
tis.phone,
@ -91,6 +92,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</foreach>
)
</if>
and tis.is_active = '1'
</where>
</select>
<select id="getInspectionStationSelect" resultType="com.bonus.digital.dao.SelectDto">

View File

@ -47,16 +47,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</delete>
<select id="getPlanManagementList" resultType="com.bonus.digital.dao.PlanManagementVo">
select tis.plan_management_id,
tis.plan_management_month,
tis.project_name,
tis.work_content,
tis.inspection_station_id,
select tpm.plan_management_id,
tpm.plan_management_month,
tpm.project_name,
tpm.work_content,
tpm.inspection_station_id,
tis2.inspection_station_name as inspectionStationName
tis.stare_date,
tis.end_date,
tis.remark,
tis.create_user
tpm.stare_date,
tpm.end_date,
tpm.remark,
tpm.create_user
from tb_plan_management tpm
left join tb_inspection_station tis2 on tpm.inspection_station_id = tis2.inspection_station_id
where category = #{category} and is_active = '1'