Merge branch 'test' of http://git.estsh.com/i3-IMPP/i3plus-pojo into test
commit
53bd4066f2
@ -0,0 +1,31 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.form.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.form.bean.BlockFormConfig;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : Castle
|
||||||
|
* @CreateDate : 2022/10/18 17:20
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface BlockFormRepository extends BaseRepository<BlockFormConfig, Long> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 按照工厂代码和配置代码查询配置信息
|
||||||
|
* @param organizeCode 工厂代码
|
||||||
|
* @param configCode 配置代码
|
||||||
|
* @return 配置信息
|
||||||
|
*/
|
||||||
|
BlockFormConfig getFirstByOrganizeCodeAndConfigCode(String organizeCode, String configCode);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 按照配置代码查询配置信息
|
||||||
|
* @param configCode 配置代码
|
||||||
|
* @return 配置信息
|
||||||
|
*/
|
||||||
|
BlockFormConfig getFirstByConfigCode(String configCode);
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.form.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.form.bean.EngineScriptPersistenceHistory;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface EngineScriptPersistenceHistoryRepository extends BaseRepository<EngineScriptPersistenceHistory, Long> {
|
||||||
|
}
|
@ -0,0 +1,23 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.form.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.form.bean.EngineRulePersistence;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 规则引擎持久化类
|
||||||
|
* @Reference :
|
||||||
|
* @Author : Rock.Yu
|
||||||
|
* @CreateDate : 2019-04-16 09:53
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface IEngineRulePersistenceRepository extends BaseRepository<EngineRulePersistence, Long> {
|
||||||
|
/**
|
||||||
|
* 按照规则编号查询规则实体
|
||||||
|
* @param organizeCode 工厂代码
|
||||||
|
* @param ruleNo 规则编号
|
||||||
|
* @return 规则实体
|
||||||
|
*/
|
||||||
|
EngineRulePersistence findByOrganizeCodeAndRuleNo(String organizeCode, String ruleNo);
|
||||||
|
}
|
@ -0,0 +1,40 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.form.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.form.bean.EngineScriptPersistence;
|
||||||
|
import org.springframework.data.jpa.repository.Query;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 脚本引擎持久化类
|
||||||
|
* @Reference :
|
||||||
|
* @Author : Rock.Yu
|
||||||
|
* @CreateDate : 2019-04-16 09:53
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface IEngineScriptPersistenceRepository extends BaseRepository<EngineScriptPersistence, Long> {
|
||||||
|
/**
|
||||||
|
* 按照工厂代码和脚本编号查询脚本实体对象
|
||||||
|
* @param organizeCode 工厂代码
|
||||||
|
* @param scriptNo 脚本编号
|
||||||
|
* @return 脚本实体对象
|
||||||
|
*/
|
||||||
|
EngineScriptPersistence findByOrganizeCodeAndScriptNo(String organizeCode, String scriptNo);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 按照脚本编号查询脚本实体对象
|
||||||
|
* @param scriptNo 脚本编号
|
||||||
|
* @return 脚本实体对象
|
||||||
|
*/
|
||||||
|
EngineScriptPersistence findByScriptNo(String scriptNo);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查找所有的脚本语言类型
|
||||||
|
* @return 数据库中已经存在的脚本语言类型
|
||||||
|
*/
|
||||||
|
@Query("select t.languageType from EngineScriptPersistence t group by t.organizeCode, t.languageType")
|
||||||
|
List findGroupByLanguageType();
|
||||||
|
}
|
@ -0,0 +1,37 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.dto;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : Castle
|
||||||
|
* @CreateDate : 2022/4/13 21:48
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@ApiModel(value = "集中对账单明细汇总Dto")
|
||||||
|
@Data
|
||||||
|
public class DetailSumDto {
|
||||||
|
@ApiModelProperty(value = "物料号")
|
||||||
|
private String partNo;
|
||||||
|
@ApiModelProperty(value = "库存地")
|
||||||
|
private String whArea;
|
||||||
|
@ApiModelProperty(value = "来源存储区")
|
||||||
|
private String srcStoreArea;
|
||||||
|
@ApiModelProperty(value = "目标存储区")
|
||||||
|
private String targetStoreArea;
|
||||||
|
@ApiModelProperty(value = "业务类型")
|
||||||
|
private String transType;
|
||||||
|
@ApiModelProperty(value = "单据状态")
|
||||||
|
private String orderStatus;
|
||||||
|
@ApiModelProperty(value = "需求数量")
|
||||||
|
private Double needNum;
|
||||||
|
@ApiModelProperty(value = "处理数量")
|
||||||
|
private Double dealNum;
|
||||||
|
@ApiModelProperty(value = "创建时间")
|
||||||
|
private String createTime;
|
||||||
|
@ApiModelProperty(value = "操作时间")
|
||||||
|
private String operationTime;
|
||||||
|
}
|
@ -0,0 +1,44 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.modelbean;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : Castle
|
||||||
|
* @CreateDate : 2022/4/13 21:24
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@ApiModel(value = "对账单明细汇总页面入参")
|
||||||
|
public class DetailSumModel {
|
||||||
|
@ApiModelProperty(value = "物料号")
|
||||||
|
public String partNo;
|
||||||
|
@ApiModelProperty(value = "仓库号")
|
||||||
|
public String whNo;
|
||||||
|
@ApiModelProperty(value = "库存地")
|
||||||
|
public String whArea;
|
||||||
|
@ApiModelProperty(value = "差异值")
|
||||||
|
public Double differenceCount;
|
||||||
|
@ApiModelProperty(value = "业务类型代码")
|
||||||
|
public String transTypeCode;
|
||||||
|
@ApiModelProperty(value = "单号")
|
||||||
|
public String oderNo;
|
||||||
|
@ApiModelProperty(value = "单据状态")
|
||||||
|
public String orderStatus;
|
||||||
|
@ApiModelProperty(value = "来源存储区")
|
||||||
|
public String srcStoreArea;
|
||||||
|
@ApiModelProperty(value = "目标存储区")
|
||||||
|
public String targetStoreArea;
|
||||||
|
@ApiModelProperty(value = "开始操作时间")
|
||||||
|
public String startOperationTime;
|
||||||
|
@ApiModelProperty(value = "结束操作时间")
|
||||||
|
public String endOperationTime;
|
||||||
|
@ApiModelProperty(value = "开始创建时间")
|
||||||
|
public String startCreateTime;
|
||||||
|
@ApiModelProperty(value = "结束创建时间")
|
||||||
|
public String endCreateTime;
|
||||||
|
}
|
Loading…
Reference in New Issue