开发物理安灯业务
parent
da56d45a68
commit
c9c470a27f
@ -0,0 +1,30 @@
|
||||
package cn.estsh.i3plus.pojo.model.andon;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class AndonResultBean {
|
||||
|
||||
@ApiParam("是否成功")
|
||||
private boolean success;
|
||||
|
||||
@ApiParam("处理信息")
|
||||
private String msg;
|
||||
|
||||
@ApiParam("处理结果")
|
||||
private String result;
|
||||
|
||||
public AndonResultBean(boolean success, String msg) {
|
||||
super();
|
||||
this.success = success;
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public AndonResultBean(boolean success, String msg, String result) {
|
||||
super();
|
||||
this.success = success;
|
||||
this.msg = msg;
|
||||
this.result = result;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue