From 2b9ea775168f6c8d6f4208087334bbbec1a694ad Mon Sep 17 00:00:00 2001 From: wcy <761646706@qq.com> Date: Wed, 25 Sep 2024 17:38:01 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BA=8C=E7=BA=A7=E5=BA=93=E5=AF=BC=E5=87=BA?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../material/domain/SecondaryWarehouseVo.java | 130 ++++++++++++++++++ 1 file changed, 130 insertions(+) create mode 100644 sgzb-modules/sgzb-material/src/main/java/com/bonus/sgzb/material/domain/SecondaryWarehouseVo.java diff --git a/sgzb-modules/sgzb-material/src/main/java/com/bonus/sgzb/material/domain/SecondaryWarehouseVo.java b/sgzb-modules/sgzb-material/src/main/java/com/bonus/sgzb/material/domain/SecondaryWarehouseVo.java new file mode 100644 index 0000000..9046077 --- /dev/null +++ b/sgzb-modules/sgzb-material/src/main/java/com/bonus/sgzb/material/domain/SecondaryWarehouseVo.java @@ -0,0 +1,130 @@ +package com.bonus.sgzb.material.domain; + +import com.bonus.sgzb.common.core.annotation.Excel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +/** + * @author c liu + * @date 2024/2/21 + */ +@Data +public class SecondaryWarehouseVo { + /** + * + */ + private Long id; + /** + * 往来单位id + */ + @ApiModelProperty(value = "往来单位id") + private Long unitId; + /** + *协议id + */ + private String agreementId; + /** + *机具类型id + */ + private String typeId; + /** + *机具id + */ + private String maId; + /** + * + */ + private String companyId; + /** + * 单位名称 + */ + @Excel(name = "单位名称") + private String unitName; + + /** + * 工程id + */ + private String proId; + + /** + * 工程名称 + */ + @Excel(name = "工程名称") + private String proName; + + + /** + * 工程名称 + */ + private String projectName; + /** + * 设备名称 + */ + @Excel(name = "机具名称") + private String typeName; + /** + * 规格型号 + */ + @Excel(name = "规格型号") + private String modelName; + + /** + * 计量单位 + */ + @Excel(name = "计量单位") + private String nuitName; + /** + * 规格型号id + */ + private String modelId; + /** + * 进场数量 + */ +// @Excel(name = "进场数量") + private String jcNum; + /** + * 退场数量 + */ +// @Excel(name = "退场数量") + private String tcNUm; + + /** + * 已出库数量 + */ +// @Excel(name = "已出库数量") + private String ckNum; + + /** + * 场内库存量 + */ + + private String kcNum; + + private String keyword; + + /** + * 租赁类型 0工程1长期 + */ +// @Excel(name = "租赁类型") + private Integer leaseType; + + /** + * 领用数量 + */ + @Excel(name = "在用数量") + private Integer Num; + + + /** + * 库存数量 + */ +// @Excel(name = "库存数量") + private Integer stockNum; + + /** + * 领用数量 + */ + + private Integer receiveNum; + +}