commit
ab039e68d9
@ -0,0 +1,24 @@
|
|||||||
|
package com.dsic.gj_erp.controller.zyjh;
|
||||||
|
|
||||||
|
import com.dsic.gj_erp.bean.ResultBean;
|
||||||
|
import com.dsic.gj_erp.controller.zyjh.dto.ShangLiao;
|
||||||
|
import com.dsic.gj_erp.service.jhgk.DmYdjhService;
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import org.springframework.web.bind.annotation.PostMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RequestBody;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
@RestController
|
||||||
|
@RequestMapping("zyjh")
|
||||||
|
@AllArgsConstructor
|
||||||
|
public class ZyjhController {
|
||||||
|
|
||||||
|
private final DmYdjhService ydjhService;
|
||||||
|
|
||||||
|
@PostMapping("sl")
|
||||||
|
public ResultBean<?> sl(@RequestBody ShangLiao sl){
|
||||||
|
|
||||||
|
return new ResultBean<>();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,10 @@
|
|||||||
|
package com.dsic.gj_erp.controller.zyjh.dto;
|
||||||
|
|
||||||
|
import lombok.Getter;
|
||||||
|
import lombok.Setter;
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
@Setter
|
||||||
|
public class ShangLiao {
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in new issue