mirror of
https://github.com/weizhiqiang1995/erp-pro.git
synced 2025-03-03 19:03:11 +08:00
Merge branch 'company_server' of https://gitee.com/doc_wei01/skyeye into company_server
This commit is contained in:
commit
62c1c8d711
1 changed files with 8 additions and 0 deletions
|
@ -84,4 +84,12 @@ public class ShopDeliveryTemplateController {
|
|||
public void queryShopDeliveryTemplate(InputObject inputObject, OutputObject outputObject) {
|
||||
shopDeliveryTemplateService.queryList(inputObject, outputObject);
|
||||
}
|
||||
|
||||
@ApiOperation(id = "selectShopDeliveryTemplateById", value = "根据id查询快递运费模版信息", method = "POST", allUse = "2")
|
||||
@ApiImplicitParams({
|
||||
@ApiImplicitParam(id = "id", name = "id", value = "主键id", required = "required")})
|
||||
@RequestMapping("/post/ShopDeliveryTemplateController/selectShopDeliveryTemplateById")
|
||||
public void selectShopDeliveryTemplateById(InputObject inputObject, OutputObject outputObject) {
|
||||
shopDeliveryTemplateService.selectById(inputObject, outputObject);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue