Commit e8b6856c authored by 赵啸非's avatar 赵啸非

添加离职管理

parent 1425be68
......@@ -52,7 +52,7 @@ const router = new Router({
...restBuilder('feedback', 'feedback'),//反馈信息
...restBuilder('staff', 'staff'),//员工基本信息
...restBuilder('leave', 'leave'),//员工离职信息
...restBuilder('staff/leave', 'staff/leave'),//员工离职信息
...restBuilder('bussinesscard', 'bussinesscard'),//名片基本信息
...restBuilder('staff/record', 'staff/record'),//客户访问记录信息
...restBuilder('news/category', 'news/category'),//新闻频道分类
......
package com.mortals.xhx.module.staff.web;
import com.mortals.framework.web.BaseCRUDJsonBodyMappingController;
import com.mortals.xhx.base.system.param.service.ParamService;
import com.mortals.xhx.module.company.model.CompanyQuery;
import com.mortals.xhx.module.company.service.CompanyService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.*;
import com.mortals.framework.model.Context;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.mortals.framework.web.BaseCRUDJsonBodyMappingController;
import com.mortals.xhx.module.staff.model.StaffLeaveEntity;
import com.mortals.xhx.module.staff.service.StaffLeaveService;
import org.apache.commons.lang3.ArrayUtils;
import com.mortals.framework.util.StringUtils;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
import com.alibaba.fastjson.JSONObject;
import java.util.Arrays;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
import static com.mortals.framework.ap.SysConstains.*;
import com.mortals.xhx.common.code.*;
/**
*
* 员工离职信息
*
* @author zxfei
* @date 2023-10-18
*/
* 员工离职信息
*
* @author zxfei
* @date 2023-10-18
*/
@RestController
@RequestMapping("staff/leave")
public class StaffLeaveController extends BaseCRUDJsonBodyMappingController<StaffLeaveService,StaffLeaveEntity,Long> {
public class StaffLeaveController extends BaseCRUDJsonBodyMappingController<StaffLeaveService, StaffLeaveEntity, Long> {
@Autowired
private ParamService paramService;
@Autowired
private CompanyService companyService;
public StaffLeaveController(){
super.setModuleDesc( "员工离职信息");
public StaffLeaveController() {
super.setModuleDesc("员工离职信息");
}
@Override
protected void init(Map<String, Object> model, Context context) {
this.addDict(model, "companyIds", CompanyIdsEnum.getEnumMap());
this.addDict(model, "staffStatus", StaffStatusEnum.getEnumMap());
this.addDict(model, "companyIds", companyService.find(new CompanyQuery()).stream().collect(Collectors.toMap(x -> x.getId().toString(), y -> y.getCompanyName(), (o, n) -> n)));
this.addDict(model, "staffStatus", StaffStatusEnum.getEnumMap());
super.init(model, context);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment