Merge remote-tracking branch 'origin/test' into test
commit
fd0f079a6a
@ -0,0 +1,25 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.engine.script;
|
||||||
|
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 脚本执行日志
|
||||||
|
* @Reference :
|
||||||
|
* @Author : jason.niu
|
||||||
|
* @CreateDate : 2020-04-29
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Api("插件日志")
|
||||||
|
public class ScriptLoggerModel {
|
||||||
|
@ApiParam("工厂")
|
||||||
|
private Boolean error;
|
||||||
|
|
||||||
|
@ApiParam("日志内容")
|
||||||
|
private String context;
|
||||||
|
|
||||||
|
@ApiParam("日志打印日期")
|
||||||
|
private String printDate;
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.mes.engine.script.EngineScriptPersistenceHistory;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface EngineScriptPersistenceHistoryRepository extends BaseRepository<EngineScriptPersistenceHistory, Long> {
|
||||||
|
}
|
Loading…
Reference in New Issue