Merge branch 'dev' of http://git.estsh.com/i3-IMPP/i3plus-pojo into dev
commit
8cb6abc09d
@ -0,0 +1,44 @@
|
||||
package cn.estsh.i3plus.pojo.andon.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;
|
||||
|
||||
/**
|
||||
* @author Dominic
|
||||
* @date 2021/6/27 10:46
|
||||
* @desc
|
||||
*/
|
||||
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Table(name = "ANDON_TARGET")
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Inheritance(strategy = InheritanceType.JOINED)
|
||||
@Api("安灯目标")
|
||||
public class AndonTarget extends BaseBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -8981868292756664265L;
|
||||
|
||||
@Column(name = "TARGET_TYPE")
|
||||
@ApiParam("目标类型")
|
||||
private String targetType;
|
||||
|
||||
@Column(name = "TARGET")
|
||||
@ApiParam("目标值")
|
||||
private String target;
|
||||
|
||||
@Column(name = "WEEK")
|
||||
@ApiParam("星期")
|
||||
private String week;
|
||||
}
|
@ -0,0 +1,58 @@
|
||||
package cn.estsh.i3plus.pojo.andon.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.ColumnDefault;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.*;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description :mes系统业务动作
|
||||
* @Reference :
|
||||
* @Author : yiming.gu
|
||||
* @CreateDate : 2019-05-20
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Inheritance(strategy = InheritanceType.JOINED)
|
||||
@Table(name = "MES_SHIFT_REST")
|
||||
@Api("班次休息信息")
|
||||
public class MesShiftRest extends BaseBean implements Serializable {
|
||||
private static final long serialVersionUID = 5486276486536860088L;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("工作中心代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "SHIFT_CODE")
|
||||
@ApiParam("班次代码")
|
||||
private String shiftCode;
|
||||
|
||||
@Column(name = "START_TIME")
|
||||
@ApiParam("开始时间")
|
||||
private String startTime;
|
||||
|
||||
@Column(name = "REST_TIMES", columnDefinition = "decimal(18,8)")
|
||||
@ColumnDefault("0")
|
||||
@ApiParam("休息时长")
|
||||
private Double restTimes;
|
||||
|
||||
@Column(name = "AREA_CODE")
|
||||
@ApiParam("区域代码")
|
||||
private String areaCode;
|
||||
|
||||
@Column(name = "REST_DESC")
|
||||
@ApiParam("班休描述")
|
||||
private String restDesc;
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.andon.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.andon.bean.AndonTarget;
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : 安灯目标
|
||||
* @Reference :
|
||||
* @Author : dominic
|
||||
* @CreateDate : 2021/6/27 11:39
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface IAndonTargetRepository extends BaseRepository<AndonTarget, Long> {
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.andon.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.andon.bean.MesShiftRest;
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Reference:
|
||||
* @Author: yiming.gu
|
||||
* @CreateDate:2019-05-20
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface MesShiftRestRepository extends BaseRepository<MesShiftRest, Long> {
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesToolingDetail;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Author: jokelin
|
||||
* @Date: 2021/6/26 5:57 PM
|
||||
* @Modify:
|
||||
*/
|
||||
public interface MesToolingDetailRepository extends BaseRepository<MesToolingDetail, Long> {
|
||||
}
|
@ -0,0 +1,66 @@
|
||||
package cn.estsh.i3plus.pojo.wms.dto;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import org.hibernate.annotations.GenericGenerator;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.GeneratedValue;
|
||||
import javax.persistence.Id;
|
||||
|
||||
/**
|
||||
* @Description : WmsVendorWindowDto
|
||||
* @Author :gsz
|
||||
* @Date 2021/6/29 16:32
|
||||
* @Modify
|
||||
**/
|
||||
@Data
|
||||
@Api("到货窗口输出类")
|
||||
public class WmsVendorWindowDto {
|
||||
@Id
|
||||
@GeneratedValue(generator = "IDGenerator")
|
||||
@GenericGenerator(name = "IDGenerator", strategy = "assigned")
|
||||
@Column(name = "ID")
|
||||
@ApiParam(value = "主键", example = "0")
|
||||
public Long id;
|
||||
|
||||
|
||||
@ApiParam(value = "窗口时间")
|
||||
private String vendorWindowTime;
|
||||
|
||||
@ApiParam(value = "星期一供应商")
|
||||
private String mondayVendor;
|
||||
|
||||
@ApiParam(value = "星期二供应商")
|
||||
private String tuesdayVendor;
|
||||
|
||||
@ApiParam(value = "星期三供应商")
|
||||
private String wednesdayVendor;
|
||||
|
||||
@ApiParam(value = "星期四供应商")
|
||||
private String thursdayVendor;
|
||||
|
||||
@ApiParam(value = "星期五供应商")
|
||||
private String fridayVendor;
|
||||
|
||||
@ApiParam(value = "星期六供应商")
|
||||
private String saturdayVendor;
|
||||
|
||||
@ApiParam(value = "星期日供应商")
|
||||
private String sundayVendor;
|
||||
|
||||
public WmsVendorWindowDto() {
|
||||
}
|
||||
|
||||
public WmsVendorWindowDto(WmsVendorWindowDto wmsVendorWindowDto) {
|
||||
this.vendorWindowTime = wmsVendorWindowDto.getVendorWindowTime();
|
||||
this.mondayVendor = wmsVendorWindowDto.getMondayVendor();
|
||||
this.tuesdayVendor = wmsVendorWindowDto.getTuesdayVendor();
|
||||
this.wednesdayVendor = wmsVendorWindowDto.getWednesdayVendor();
|
||||
this.thursdayVendor = wmsVendorWindowDto.getThursdayVendor();
|
||||
this.fridayVendor = wmsVendorWindowDto.getFridayVendor();
|
||||
this.saturdayVendor = wmsVendorWindowDto.getSaturdayVendor();
|
||||
this.sundayVendor = wmsVendorWindowDto.getSundayVendor();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue