Merge branch 'test' of http://git.estsh.com/i3-IMPP/i3plus-pojo into test
Conflicts: modules/i3plus-pojo-wms/src/main/java/cn/estsh/i3plus/pojo/wms/bean/WmsDocMovementDetails.javayun-zuoyi
commit
acbad1a637
@ -0,0 +1,25 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Author: jokelin
|
||||
* @Date: 2020/9/2 5:00 下午
|
||||
* @Modify:
|
||||
*/
|
||||
@Data
|
||||
public class AssistModuleModel {
|
||||
|
||||
@ApiParam("标准节拍")
|
||||
private Integer standTakt;
|
||||
|
||||
@ApiParam("x坐标内容")
|
||||
private List<String> xAxis;
|
||||
|
||||
@ApiParam("y坐标内容")
|
||||
private List<String> yAxis;
|
||||
}
|
@ -0,0 +1,42 @@
|
||||
package cn.estsh.i3plus.pojo.wms.modelbean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description : 推荐车辆信息model
|
||||
* @Reference :
|
||||
* @Author : jimmy.zeng
|
||||
* @CreateDate : 2020-09-02 11:17
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Api("推荐车辆信息model")
|
||||
public class WmsRecommendCarModel extends BaseBean implements Serializable {
|
||||
|
||||
@ApiParam(value = "计划日期")
|
||||
String planTimeStart;
|
||||
@ApiParam(value = "待发物料总数")
|
||||
String partNo;
|
||||
@ApiParam(value = "标准包装")
|
||||
String snp;
|
||||
@ApiParam(value = "单包装体积(m3)")
|
||||
Double vol;
|
||||
@ApiParam(value = "物料体积(m3)")
|
||||
Double partTotalVol;
|
||||
|
||||
// @ApiParam(value = "车辆编号")
|
||||
// String carNo;
|
||||
// @ApiParam(value = "车辆名称")
|
||||
// String carDesc;
|
||||
// @ApiParam(value = "容积(m3)")
|
||||
// Double volume;
|
||||
// @ApiParam(value = "需要(辆)")
|
||||
// Integer carQty;
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.wms.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsQCSNErrorList;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : 质检单条码不良操作类
|
||||
* @Reference :
|
||||
* @Author : rock.yu
|
||||
* @CreateDate : 2020-09-02 21:06
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsQCSNErrorListRepository extends BaseRepository<WmsQCSNErrorList, Long> {
|
||||
}
|
Loading…
Reference in New Issue