package com.ruoyi.consumables.dto;
|
|
import com.ruoyi.consumables.pojo.ConsumablesInRecord;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.math.BigDecimal;
|
|
|
@EqualsAndHashCode(callSuper = true)
|
@Data
|
public class ConsumablesInRecordDto extends ConsumablesInRecord {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 产品名称
|
*/
|
private String productName;
|
/**
|
* 产品规格
|
*/
|
private String model;
|
/**
|
* 产品单位
|
*/
|
private String unit;
|
|
private String timeStr;
|
|
private String createBy;
|
|
//现存量
|
private String currentconsumables;
|
|
//现净重
|
private BigDecimal currentWeight;
|
}
|