Merge branch 'dev' of http://git.estsh.com/i3-IMPP/i3plus-pojo into dev
commit
8f56fc5620
@ -0,0 +1,59 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description : 非JIS发运
|
||||
* @Reference :
|
||||
* @Author : amy
|
||||
* @CreateDate : 2019-06-20 13:24
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Api(value="非JIS发运",description = "非JIS发运")
|
||||
public class SapDn extends SapBase{
|
||||
|
||||
@ApiParam(value = "销售交货单号",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private String vbeln;
|
||||
|
||||
@ApiParam(value = "行项目",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private Integer posnr;
|
||||
|
||||
@ApiParam(value = "发货工厂",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private String werks;
|
||||
|
||||
@ApiParam(value = "发货库存地",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private String lgort;
|
||||
|
||||
@ApiParam(value = "计划交货日期",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private String lfdat;
|
||||
|
||||
@ApiParam(value = "客户编码",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private String kunnr;
|
||||
|
||||
@ApiParam(value = "物料号",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private String matnr;
|
||||
|
||||
@ApiParam(value = "客户物料号",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private String kdmat;
|
||||
|
||||
@ApiParam(value = "交货数量",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private String lfimg;
|
||||
|
||||
@ApiParam(value = "单位",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private String meins;
|
||||
|
||||
}
|
@ -0,0 +1,56 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description : 销售退货
|
||||
* @Reference :
|
||||
* @Author : amy
|
||||
* @CreateDate : 2019-06-20 13:32
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Api(value="销售退货",description = "销售退货")
|
||||
public class SapRdn extends SapBase{
|
||||
|
||||
@ApiParam(value = "销售交货单",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private String vbeln;
|
||||
|
||||
@ApiParam(value = "Item",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private Integer posnr;
|
||||
|
||||
@ApiParam(value = "收货工厂",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private String werks;
|
||||
|
||||
@ApiParam(value = "收货库存地",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private String lgort;
|
||||
|
||||
@ApiParam(value = "收货日期",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private String lfdat;
|
||||
|
||||
@ApiParam(value = "客户编码",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private String kunnr;
|
||||
|
||||
@ApiParam(value = "物料号",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private String matnr;
|
||||
|
||||
@ApiParam(value = "收货数量",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private String lfimg;
|
||||
|
||||
@ApiParam(value = "物料单位",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private String meins;
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package cn.estsh.i3plus.pojo.wms.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsWorkCenterZone;
|
||||
|
||||
/**
|
||||
* @Description : 产线(工作中心)-存储区信息管理
|
||||
* @Reference :
|
||||
* @Author : sky.meng
|
||||
* @CreateDate : 2019-06-20 14:55
|
||||
* @Modify:
|
||||
**/
|
||||
public interface WmsWorkCenterZoneRepository extends BaseRepository<WmsWorkCenterZone, Long> {
|
||||
}
|
Loading…
Reference in New Issue