脚本引擎移植到动态表单---增加系统参数页面
parent
15e0f1c3f5
commit
365ff091f7
@ -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,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