Merge branch 'master' of http://git.estsh.com/i3-IMPP/i3plus-pojo
commit
20152e7efd
@ -0,0 +1,50 @@
|
||||
package cn.estsh.i3plus.pojo.wms.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.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
|
||||
/**
|
||||
* @Description : 作业步骤处理组件
|
||||
* @Reference :
|
||||
* @Author : dragon.xu
|
||||
* @CreateDate : 2018-11-22 16:53
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="WMS_ACTION_MODULE")
|
||||
@Api("作业步骤处理组")
|
||||
public class WmsActionModule extends BaseBean {
|
||||
|
||||
@Column(name="AM_NAME")
|
||||
@ApiParam("组件名称")
|
||||
public String amName;
|
||||
|
||||
@Column(name="AM_DESC")
|
||||
@ApiParam("组件描述")
|
||||
public String amDesc;
|
||||
|
||||
@Column(name="CALL_CLASS")
|
||||
@ApiParam("实现类")
|
||||
public String callClass;
|
||||
|
||||
@Column(name="CALL_FUN")
|
||||
@ApiParam("调用方法")
|
||||
public String callFun;
|
||||
|
||||
@Column(name="AM_TYPE")
|
||||
@ApiParam(value = "组件类型", example = "0")
|
||||
public Integer amType;
|
||||
}
|
@ -0,0 +1,50 @@
|
||||
package cn.estsh.i3plus.pojo.wms.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.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
|
||||
/**
|
||||
* @Description : 作业步骤处理组参数
|
||||
* @Reference :
|
||||
* @Author : dragon.xu
|
||||
* @CreateDate : 2018-11-22 16:53
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="WMS_ACTION_MODULE_PARAM")
|
||||
@Api("作业步骤处理组参数")
|
||||
public class WmsActionModuleParam extends BaseBean {
|
||||
|
||||
@Column(name="AM_ID")
|
||||
@ApiParam("组件ID")
|
||||
public Long amID;
|
||||
|
||||
@Column(name="PARAM_CODE")
|
||||
@ApiParam("参数编码")
|
||||
public String paramCode;
|
||||
|
||||
@Column(name="PARAM_NAME")
|
||||
@ApiParam("参数名称")
|
||||
public String paramName;
|
||||
|
||||
@Column(name="PARAM_VALUE_LIST")
|
||||
@ApiParam("参数可选值列表")
|
||||
public String paramValueList;
|
||||
|
||||
@Column(name="PARAM_TYPE")
|
||||
@ApiParam(value = "参数类型", example = "0")
|
||||
public Integer paramType;
|
||||
}
|
@ -0,0 +1,44 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import javax.persistence.Entity;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description : PDA传输到后台的实体bean对象
|
||||
* @Reference :
|
||||
* @Author : silliter.yuan
|
||||
* @CreateDate : 2018-11-22 15:58
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Api("返回前端数据实体")
|
||||
public class WmsActionResponseBean extends BaseBean {
|
||||
|
||||
@ApiParam("进度")
|
||||
public Double percent;
|
||||
|
||||
@ApiParam("当前步骤")
|
||||
public Integer currentStep;
|
||||
|
||||
@ApiParam("总步数")
|
||||
public int totalStep;
|
||||
|
||||
@ApiParam("提示信息")
|
||||
public String message;
|
||||
|
||||
@ApiParam("列表信息")
|
||||
public List<String> informations;
|
||||
|
||||
@ApiParam("可选项")
|
||||
public List<String> options;
|
||||
|
||||
@ApiParam("选中的明细数据")
|
||||
public String details;
|
||||
|
||||
|
||||
}
|
@ -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.WmsActionModuleParam;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : 作业步骤处理组件参数
|
||||
* @Reference :
|
||||
* @Author : dragon.xu
|
||||
* @CreateDate : 2018-11-22 17:01
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsActionModuleParamRepository extends BaseRepository<WmsActionModuleParam, Long> {
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package cn.estsh.i3plus.pojo.wms.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsActionModule;
|
||||
import org.springframework.stereotype.Repository;
|
||||
/**
|
||||
* @Description : 作业步骤处理组件
|
||||
* @Reference :
|
||||
* @Author : dragon.xu
|
||||
* @CreateDate : 2018-11-22 17:01
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsActionModuleRepository extends BaseRepository<WmsActionModule, Long> {
|
||||
}
|
Loading…
Reference in New Issue