59 lines
1.1 KiB
Java
59 lines
1.1 KiB
Java
package com.ruoyi.system.domain;
|
|
|
|
import com.baomidou.mybatisplus.annotation.*;
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
import java.util.Date;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
/**
|
|
* 物料汇总对象 material_total
|
|
*
|
|
* @author ruoyi
|
|
* @date 2025-02-26
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = true)
|
|
@TableName("material_total")
|
|
public class MaterialTotal extends BaseEntity {
|
|
|
|
private static final long serialVersionUID=1L;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
@TableId(value = "id")
|
|
private Long id;
|
|
/**
|
|
* 生产令号
|
|
*/
|
|
private String productionOrderNumber;
|
|
/**
|
|
* 物料编码
|
|
*/
|
|
private String materialCode;
|
|
/**
|
|
* 物料名称
|
|
*/
|
|
private String materialName;
|
|
/**
|
|
* 仓库编码
|
|
*/
|
|
private String quantity;
|
|
/**
|
|
* 仓位编码
|
|
*/
|
|
private String inventory;
|
|
/**
|
|
* 需求时间
|
|
*/
|
|
private Date demandTime;
|
|
/**
|
|
* 备注
|
|
*/
|
|
private String remarks;
|
|
|
|
}
|