开发作业步骤调用
parent
fe5996b792
commit
e5c5e80d41
@ -0,0 +1,42 @@
|
||||
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 : jimmy.zeng
|
||||
* @CreateDate : 2018-11-22 14:18
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="WMS_ACTION_STEP_CALL")
|
||||
@Api("作业步骤调用信息")
|
||||
public class WmsActionStepCall extends BaseBean {
|
||||
|
||||
@Column(name="AS_ID")
|
||||
@ApiParam("作业步骤ID")
|
||||
public Long asId;
|
||||
|
||||
@Column(name="SEQ")
|
||||
@ApiParam(value = "序号",example = "0")
|
||||
public Integer seq;
|
||||
|
||||
@Column(name="AM_ID")
|
||||
@ApiParam("处理组件ID")
|
||||
public Long amId;
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package cn.estsh.i3plus.pojo.wms.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsActionStepCall;
|
||||
|
||||
/**
|
||||
* @Description : 作业步骤调用信息
|
||||
* @Reference :
|
||||
* @Author : jimmy.zeng
|
||||
* @CreateDate : 2018-11-22 14:41
|
||||
* @Modify:
|
||||
**/
|
||||
public interface WmsActionStepCallRepository extends BaseRepository<WmsActionStepCall, Long> {
|
||||
}
|
Loading…
Reference in New Issue