Merge branch 'dev' of http://git.estsh.com/i3-IMPP/i3plus-pojo into dev
parent
cb8a090aea
commit
6a36ad7601
@ -0,0 +1,27 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
/**
|
||||
* @author Wynne.Lu
|
||||
* @date 2020/3/30 22:18
|
||||
* @desc
|
||||
*/
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public class FsmStatusModel {
|
||||
|
||||
private String from;
|
||||
|
||||
private String to;
|
||||
|
||||
private String event;
|
||||
|
||||
private Object context;
|
||||
|
||||
private String status;
|
||||
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.enumutil.MesPcnEnumUtil;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @author Wynne.Lu
|
||||
* @date 2020/3/31 18:41
|
||||
* @desc
|
||||
*/
|
||||
@Data
|
||||
public class StationRequestCmdBean {
|
||||
|
||||
private StationRequestBean requestBean;
|
||||
|
||||
private MesPcnEnumUtil.STATION_REQUEST_BEAN_CMD cmd;
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesStateMachineStatus;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Reference:
|
||||
* @Author: joke.wang
|
||||
* @CreateDate:2019\10\9
|
||||
* @Modify:
|
||||
**/
|
||||
public interface MesStateMachineStatusRepository extends BaseRepository<MesStateMachineStatus, Long> {
|
||||
}
|
Loading…
Reference in New Issue