Merge branch 'dev' of http://git.estsh.com/i3-IMPP/i3plus-pojo into dev
commit
6fb971cd60
@ -0,0 +1,40 @@
|
||||
package cn.estsh.i3plus.pojo.model.form;
|
||||
|
||||
import cn.estsh.i3plus.pojo.form.bean.*;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description : 元素Model
|
||||
* @Reference : 元素整体封装
|
||||
* @Author : Adair Peng
|
||||
* @CreateDate : 2019-03-21 13:14
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
public class ElementModel{
|
||||
|
||||
@ApiParam(value = "元素基础信息")
|
||||
private BfElement element;
|
||||
|
||||
@ApiParam(value = "元素Tree信息")
|
||||
private BfElementTree elementTree;
|
||||
|
||||
@ApiParam(value = "元素Grid信息")
|
||||
private BfElementGrid elementGrid;
|
||||
|
||||
@ApiParam(value = "元素基础属性信息")
|
||||
private List<BfElementProperty> propertyList;
|
||||
|
||||
@ApiParam(value = "元素基础虚拟属性信息")
|
||||
private List<BfElementPropertyVirtual> virtualList;
|
||||
|
||||
@ApiParam(value = "数据对象信息")
|
||||
private BfDataObject dataObject;
|
||||
|
||||
@ApiParam(value = "元素类型")
|
||||
private Integer elementType;
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.wms.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.wms.engine.script.EngineScriptPersistence;
|
||||
import org.springframework.data.jpa.repository.Query;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Repository
|
||||
public interface IEngineScriptPersistenceDao extends BaseRepository<EngineScriptPersistence, Long> {
|
||||
EngineScriptPersistence findByScriptNo(String scriptNo);
|
||||
|
||||
@Query("select t.languageType from EngineScriptPersistence t group by t.languageType")
|
||||
List findGroupByLanguageType();
|
||||
}
|
Loading…
Reference in New Issue