【宁德问题清单】
parent
88a69ac7f8
commit
7378df1b9e
@ -0,0 +1,27 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.dto;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.common.Pager;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.WmsPartPackage;
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :物料包装关系入参
|
||||||
|
* @Reference :
|
||||||
|
* @Author : gcj
|
||||||
|
* @CreateDate : 2019-11-07 16:06
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Api("物料包装关系入参")
|
||||||
|
public class PartPackagDto{
|
||||||
|
|
||||||
|
@ApiParam(value = "物料编码")
|
||||||
|
private String partNo;
|
||||||
|
@ApiParam(value = "工厂代码")
|
||||||
|
private List<WmsPartPackage> partPackages;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.WmsPackageSpec;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.WmsPartPackage;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :包装关系Repository的方法接口
|
||||||
|
* @Reference :
|
||||||
|
* @Author : gcj
|
||||||
|
* @CreateDate : 2019-11-08 10:19
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface WmsPartPackageRepository extends BaseRepository<WmsPartPackage, Long> {
|
||||||
|
}
|
Loading…
Reference in New Issue