Merge branch 'master' of http://git.estsh.com/i3-IMPP/i3plus-pojo
commit
377f5d6194
@ -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,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