Merge branch 'test' of http://git.estsh.com/i3-IMPP/i3plus-pojo into test
commit
6fab12fc50
@ -0,0 +1,66 @@
|
||||
package cn.estsh.i3plus.pojo.mes.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.*;
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* @Description :IF_订单交付数据
|
||||
* @Reference :
|
||||
* @Author : jessica.chen
|
||||
* @CreateDate : 2020-11-06
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Inheritance(strategy = InheritanceType.JOINED)
|
||||
@Table(name = "IF_DELIVER_ORDER_DATA")
|
||||
@Api("IF_订单交付数据")
|
||||
public class IfDeliverOrderData extends BaseBean implements Serializable {
|
||||
private static final long serialVersionUID = 855289009053695347L;
|
||||
|
||||
@Column(name = "RGANIZTION_CODE")
|
||||
@ApiParam("工厂代码")
|
||||
private String rganiztionCode;
|
||||
|
||||
@Column(name = "YEAR")
|
||||
@ApiParam("年")
|
||||
private Integer year;
|
||||
|
||||
@Column(name = "MONTH")
|
||||
@ApiParam("月")
|
||||
private Integer month;
|
||||
|
||||
@Column(name = "QTY")
|
||||
@ApiParam("发运数量")
|
||||
private Integer qty = 0;
|
||||
|
||||
@Column(name = "SYNC_STATUS")
|
||||
@ApiParam("同步状态")
|
||||
private Integer syncStatus;
|
||||
|
||||
@Column(name = "ERROR_MESSAGE")
|
||||
@ApiParam("异常消息")
|
||||
private String errorMessage;
|
||||
|
||||
@Column(name = "ACTION_CODE")
|
||||
@ApiParam("动作代码")
|
||||
private String actionCode;
|
||||
|
||||
@Column(name = "IF_CODE")
|
||||
@ApiParam("接口代码")
|
||||
private String ifCode;
|
||||
}
|
@ -0,0 +1,30 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Author: jokelin
|
||||
* @Date: 2020/7/28 2:37 下午
|
||||
* @Modify:
|
||||
*/
|
||||
@Data
|
||||
public class LogisticsBiModel implements Serializable {
|
||||
|
||||
@ApiParam(value = "去年每月发运数量")
|
||||
private double lastQty = 0;
|
||||
|
||||
@ApiParam(value = "今年每月发运数量")
|
||||
private double thisQty = 0;
|
||||
|
||||
@ApiParam(value = "比例值")
|
||||
private double annualRatio = 0;
|
||||
|
||||
@ApiParam(value = "月份")
|
||||
private Integer month;
|
||||
}
|
@ -0,0 +1,30 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.tj;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description: 总装实际产量model
|
||||
* @Author: wangjie
|
||||
* @Date: 2020/10/28 2:56 PM
|
||||
* @Modify:
|
||||
*/
|
||||
@Data
|
||||
public class AssemblyRealWorkModel {
|
||||
|
||||
@ApiParam("生产线代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@ApiParam("实际产量")
|
||||
private Double realProdQty;
|
||||
|
||||
@ApiParam("实际目标")
|
||||
private Double realPlanQty;
|
||||
|
||||
@ApiParam("班产目标")
|
||||
private Double shiftPlanQty;
|
||||
|
||||
@ApiParam("本班达成率")
|
||||
private Integer shiftPassPercent;
|
||||
|
||||
}
|
@ -0,0 +1,25 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model.report;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesProduceSn;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 产品条码返回model
|
||||
* @author xiangming.liao
|
||||
* @version 1.0
|
||||
* @date 2021/01/06 10:43
|
||||
**/
|
||||
@Data
|
||||
@ApiModel("产品条码返回model")
|
||||
public class CosmaReportProductSnModel extends MesProduceSn implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 5217363746963291483L;
|
||||
@ApiParam("条码类型Name")
|
||||
private String snTypeName;
|
||||
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.IfDeliverOrderData;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
@Repository
|
||||
public interface IfDeliverOrderDataRepository extends BaseRepository<IfDeliverOrderData, Long> {
|
||||
}
|
@ -0,0 +1,29 @@
|
||||
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;
|
||||
|
||||
@Data
|
||||
@Api("JIS发运报表明细模型")
|
||||
public class JisReportDetailModel extends BaseBean {
|
||||
@ApiParam("客户工厂")
|
||||
private String customerNo;
|
||||
@ApiParam("计划发货数量")
|
||||
private Integer planShipingCount;
|
||||
@ApiParam("计划发货时间")
|
||||
private String planLoadTime;
|
||||
@ApiParam("料架号")
|
||||
private String fixLotNo;
|
||||
@ApiParam("排序单号")
|
||||
private String queneGroupNo;
|
||||
@ApiParam("JIS号")
|
||||
private String jisNo;
|
||||
@ApiParam("箱条码")
|
||||
private String sn;
|
||||
@ApiParam("实际发货时间")
|
||||
private String actualLoadTime;
|
||||
@ApiParam("实际上线时间")
|
||||
private String custOnLineTime;
|
||||
}
|
@ -0,0 +1,46 @@
|
||||
package cn.estsh.i3plus.pojo.wms.modelbean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import cn.estsh.i3plus.pojo.base.enumutil.WmsEnumUtil;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@Api("JIS发运报表模型")
|
||||
public class JisReportModel extends BaseBean {
|
||||
|
||||
@ApiParam("客户工厂")
|
||||
private String custOrganizeCode;
|
||||
@ApiParam("计划装车时间")
|
||||
private String planLoadTime;
|
||||
@ApiParam("计划发货数量")
|
||||
private Double planShipingCount;
|
||||
@ApiParam("实际装车时间")
|
||||
private String actualLoadTime;
|
||||
@ApiParam("实际发货数量")
|
||||
private Double actualShipingCount;
|
||||
@ApiParam("状态")
|
||||
@AnnoOutputColumn(refClass = WmsEnumUtil.TIME_STATUS.class,refForeignKey = "value",value = "description")
|
||||
private Integer shippingStatus;
|
||||
@ApiParam("料架号1")
|
||||
private String queueGroupNo_1;
|
||||
@ApiParam("客户上线时间1")
|
||||
private String custOnLineTime_1;
|
||||
@ApiParam("料架号2")
|
||||
private String queueGroupNo_2;
|
||||
@ApiParam("客户上线时间2")
|
||||
private String custOnLineTime_2;
|
||||
@ApiParam("料架号3")
|
||||
private String queueGroupNo_3;
|
||||
@ApiParam("客户上线时间3")
|
||||
private String custOnLineTime_3;
|
||||
@ApiParam("料架号4")
|
||||
private String queueGroupNo_4;
|
||||
@ApiParam("客户上线时间4")
|
||||
private String custOnLineTime_4;
|
||||
@ApiParam("客户现场库存")
|
||||
private Double qty;
|
||||
|
||||
}
|
Loading…
Reference in New Issue