From 5bd5f3bcd6d2cb375feb0756505691b551339716 Mon Sep 17 00:00:00 2001 From: zhangfeng <1603559716@qq.com> Date: 星期五, 23 十二月 2022 08:55:23 +0800 Subject: [PATCH] Merge branch 'master' of https://sinanoaq.cn:8888/r/safePlatform-out into zf --- equipment/equipment-rpc-api/src/main/java/com/gkhy/safePlatform/equipment/rpc/api/model/dto/resp/MaterialReceiveRecordsRPCRespDto.java | 213 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 213 insertions(+), 0 deletions(-) diff --git a/equipment/equipment-rpc-api/src/main/java/com/gkhy/safePlatform/equipment/rpc/api/model/dto/resp/MaterialReceiveRecordsRPCRespDto.java b/equipment/equipment-rpc-api/src/main/java/com/gkhy/safePlatform/equipment/rpc/api/model/dto/resp/MaterialReceiveRecordsRPCRespDto.java new file mode 100644 index 0000000..e3a5597 --- /dev/null +++ b/equipment/equipment-rpc-api/src/main/java/com/gkhy/safePlatform/equipment/rpc/api/model/dto/resp/MaterialReceiveRecordsRPCRespDto.java @@ -0,0 +1,213 @@ +package com.gkhy.safePlatform.equipment.rpc.api.model.dto.resp; + + +import com.fasterxml.jackson.annotation.JsonFormat; + +import java.time.LocalDateTime; + +public class MaterialReceiveRecordsRPCRespDto { + /** + * id + */ + private Long id; + /** + * 物资名称 + */ + private String materialName; + /** + * 物资编号 + */ + private String materialNo; + /** + * rfid + */ + private String rfid; + /** + * 领取时间 + */ + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") + private LocalDateTime receiveTime; + /** + * 领取人id + */ + private Long receiveUid; + /** + * 领取人姓名 + */ + private String receiveUname; + /** + * 归还状态(0未归还,1归还,3损耗) + */ + private Byte revertStatus; + /** + * 物资状态 + */ + private Byte materialStatus; + /** + * 备注 + */ + private String remark; + /** + * 归还时间 + */ + private LocalDateTime revertTime; + + /** + * 物资清单(详细物资)id + */ + private Long smdId; + /** + * 基础记录id + */ + private Long receiveBaseId; + + private Byte validStatus; + private Long smallClassifyId; + private Byte consumable; + private Long bigClassifyId; + private String bigClassifyName; + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getMaterialName() { + return materialName; + } + + public void setMaterialName(String materialName) { + this.materialName = materialName; + } + + public String getMaterialNo() { + return materialNo; + } + + public void setMaterialNo(String materialNo) { + this.materialNo = materialNo; + } + + public String getRfid() { + return rfid; + } + + public void setRfid(String rfid) { + this.rfid = rfid; + } + + public LocalDateTime getReceiveTime() { + return receiveTime; + } + + public void setReceiveTime(LocalDateTime receiveTime) { + this.receiveTime = receiveTime; + } + + public Long getReceiveUid() { + return receiveUid; + } + + public void setReceiveUid(Long receiveUid) { + this.receiveUid = receiveUid; + } + + public String getReceiveUname() { + return receiveUname; + } + + public void setReceiveUname(String receiveUname) { + this.receiveUname = receiveUname; + } + + public Byte getRevertStatus() { + return revertStatus; + } + + public void setRevertStatus(Byte revertStatus) { + this.revertStatus = revertStatus; + } + + public Byte getMaterialStatus() { + return materialStatus; + } + + public void setMaterialStatus(Byte materialStatus) { + this.materialStatus = materialStatus; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public LocalDateTime getRevertTime() { + return revertTime; + } + + public void setRevertTime(LocalDateTime revertTime) { + this.revertTime = revertTime; + } + + public Long getSmdId() { + return smdId; + } + + public void setSmdId(Long smdId) { + this.smdId = smdId; + } + + public Long getReceiveBaseId() { + return receiveBaseId; + } + + public void setReceiveBaseId(Long receiveBaseId) { + this.receiveBaseId = receiveBaseId; + } + + public Byte getValidStatus() { + return validStatus; + } + + public void setValidStatus(Byte validStatus) { + this.validStatus = validStatus; + } + + public Long getSmallClassifyId() { + return smallClassifyId; + } + + public void setSmallClassifyId(Long smallClassifyId) { + this.smallClassifyId = smallClassifyId; + } + + public Byte getConsumable() { + return consumable; + } + + public void setConsumable(Byte consumable) { + this.consumable = consumable; + } + + public Long getBigClassifyId() { + return bigClassifyId; + } + + public void setBigClassifyId(Long bigClassifyId) { + this.bigClassifyId = bigClassifyId; + } + + public String getBigClassifyName() { + return bigClassifyName; + } + + public void setBigClassifyName(String bigClassifyName) { + this.bigClassifyName = bigClassifyName; + } +} -- Gitblit v1.9.2