20 changed files with 320 additions and 91 deletions
@ -0,0 +1,47 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.warehouse.feign; |
||||
|
||||
|
||||
import org.springblade.common.constant.ModuleNameConstant; |
||||
import org.springframework.cloud.openfeign.FeignClient; |
||||
import org.springframework.web.bind.annotation.PostMapping; |
||||
import org.springframework.web.bind.annotation.RequestParam; |
||||
|
||||
/** |
||||
* 托盘 货物 绑定 Feign接口类 |
||||
* |
||||
* @author zhy |
||||
* @since 2023-07-10 |
||||
*/ |
||||
@FeignClient( |
||||
value = ModuleNameConstant.APPLICATION_WAREHOUSE_NAME |
||||
) |
||||
public interface IWarehouseTrayTypeClient { |
||||
|
||||
String API_PREFIX = "warehousetraytype/client"; |
||||
String TOP = API_PREFIX + "/top5"; |
||||
|
||||
|
||||
|
||||
/** |
||||
* 通过关联主表Id删除 |
||||
*/ |
||||
@PostMapping(TOP+"/delEntityByMasterId") |
||||
Boolean removeByMasterId(@RequestParam Long id); |
||||
|
||||
} |
@ -0,0 +1,41 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.warehouse.vo; |
||||
|
||||
import com.logpm.warehouse.entity.WarehouseWaybillEntity; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 运单表 视图实体类 |
||||
* |
||||
* @author lmy |
||||
* @since 2023-08-11 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class WarehouseWaybillDetentionVO extends WarehouseWaybillEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
/** |
||||
* 滞留仓库 |
||||
*/ |
||||
@ApiModelProperty(value = "滞留仓库") |
||||
private String retentionWarehouseName; |
||||
|
||||
} |
@ -0,0 +1,24 @@
|
||||
package com.logpm.warehouse.feign; |
||||
|
||||
import com.logpm.warehouse.service.IWarehouseTrayGoodsService; |
||||
import com.logpm.warehouse.service.IWarehouseTrayTypeService; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springblade.core.tool.utils.Func; |
||||
import org.springframework.web.bind.annotation.PostMapping; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
import springfox.documentation.annotations.ApiIgnore; |
||||
|
||||
@ApiIgnore() |
||||
@RestController |
||||
@AllArgsConstructor |
||||
public class WarehouseTrayTypeClient implements IWarehouseTrayTypeClient { |
||||
|
||||
private final IWarehouseTrayTypeService warehouseTrayTypeService; |
||||
|
||||
|
||||
|
||||
@Override |
||||
public Boolean removeByMasterId(Long id) { |
||||
return warehouseTrayTypeService.deleteByMasterId(id); |
||||
} |
||||
} |
Loading…
Reference in new issue