|
|
|
@ -3,9 +3,11 @@ package com.dsic.gj_erp.controller.zyjh;
|
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
|
|
import com.dsic.gj_erp.bean.ResultBean;
|
|
|
|
|
import com.dsic.gj_erp.bean.jhgk.DmYdjh;
|
|
|
|
|
import com.dsic.gj_erp.bean.jhgk.DmYdjhLj;
|
|
|
|
|
import com.dsic.gj_erp.service.jcsj.impl.DmDwxxpService;
|
|
|
|
|
import com.dsic.gj_erp.service.jhgk.DmYdjhLjService;
|
|
|
|
|
import com.dsic.gj_erp.service.jhgk.DmYdjhService;
|
|
|
|
|
import lombok.AllArgsConstructor;
|
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
|
|
|
@ -17,6 +19,7 @@ import java.util.List;
|
|
|
|
|
public class GetXXXController {
|
|
|
|
|
|
|
|
|
|
private final DmDwxxpService dmDwxxpService;
|
|
|
|
|
private final DmYdjhService dmYdjhService;
|
|
|
|
|
private final DmYdjhLjService ydjhLjService;
|
|
|
|
|
|
|
|
|
|
@PostMapping("getYdjhlj")
|
|
|
|
@ -28,6 +31,12 @@ public class GetXXXController {
|
|
|
|
|
return new ResultBean<>(list);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@GetMapping("tq")
|
|
|
|
|
public ResultBean<?> tqFromYdjh(){
|
|
|
|
|
|
|
|
|
|
return new ResultBean<>(dmDwxxpService.getDwxxForSelect());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@GetMapping("getBFangDwxx")
|
|
|
|
|
public ResultBean<?> getBFangDwxx(){
|
|
|
|
|
return new ResultBean<>(dmDwxxpService.getDwxxForSelect());
|
|
|
|
|