Merge branch 'dev' of http://git.estsh.com/i3-IMPP/i3plus-pojo into dev
commit
2be5f29a63
@ -0,0 +1,66 @@
|
||||
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-19 13:21
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Api(value="零星领料(退)料结果",description = "零星领料(退)料结果")
|
||||
public class WmsMiscr extends SapBase{
|
||||
|
||||
@ApiParam(value = "编号",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private String refid;
|
||||
|
||||
@ApiParam(value = "行号",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private Double zeile;
|
||||
|
||||
@ApiParam(value = "工厂",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private String werks;
|
||||
|
||||
@ApiParam(value = "发出库存地点(退回库存地点)",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private String lgort;
|
||||
|
||||
@ApiParam(value = "物料编码",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private String matnr;
|
||||
|
||||
@ApiParam(value = "数量",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private Double erfmg;
|
||||
|
||||
@ApiParam(value = "计量单位",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private String erfme;
|
||||
|
||||
@ApiParam(value = "业务类型",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private String zaction;
|
||||
|
||||
@ApiParam(value = "交易日期",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private String zpost;
|
||||
|
||||
@ApiParam(value = "交易时间",example = "1")
|
||||
@AnnoOutputColumn
|
||||
private String ztime;
|
||||
|
||||
public Double getZeileVal() {
|
||||
return zeile== null ? 0D : this.zeile.doubleValue();
|
||||
}
|
||||
|
||||
public Double getErfmgVal() {
|
||||
return erfmg== null ? 0D : this.erfmg.doubleValue();
|
||||
}
|
||||
}
|
@ -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.WareHouse;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsProdCfgType;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : 对象持久层仓用方法控制
|
||||
* @Reference :
|
||||
* @Author : sky.meng
|
||||
* @CreateDate : 2018-11-06 9:47
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsProdCfgTypeRepository extends BaseRepository<WmsProdCfgType, Long> {
|
||||
}
|
Loading…
Reference in New Issue