parent
d8f4225004
commit
32f44fd483
@ -0,0 +1,21 @@ |
|||||||
|
package com.dxhy.order.consumer.modules.commodity.controller; |
||||||
|
|
||||||
|
import com.dxhy.order.model.R; |
||||||
|
import org.springframework.web.bind.annotation.PostMapping; |
||||||
|
import org.springframework.web.bind.annotation.RequestMapping; |
||||||
|
import org.springframework.web.bind.annotation.RestController; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Description 集团物料库 |
||||||
|
* @Author 巩权林 |
||||||
|
* @Date 2023/3/9 08:19 |
||||||
|
**/ |
||||||
|
@RequestMapping(value = "/groupCommodity") |
||||||
|
@RestController |
||||||
|
public class GroupCommodityController { |
||||||
|
|
||||||
|
@PostMapping("/list") |
||||||
|
public R list() { |
||||||
|
|
||||||
|
} |
||||||
|
} |
@ -0,0 +1,13 @@ |
|||||||
|
package com.dxhy.order.consumer.modules.commodity.domain.dto; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Description 集团物料编码查询 |
||||||
|
* @Author 巩权林 |
||||||
|
* @Date 2023/3/9 08:22 |
||||||
|
**/ |
||||||
|
@Data |
||||||
|
public class QueryGroupCommodityDTO { |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue