Merge pull request '安灯' (#308) from jhforever.wang/wangjie-i3plus-pojo:test into test
Reviewed-on: http://git.estsh.com/i3-IMPP/i3plus-pojo/pulls/308yun-zuoyi
commit
307b4f7cf6
@ -0,0 +1,27 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.andon.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;
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue