package com.aps.core.domain;
|
|
import com.aps.common.core.annotation.Excel;
|
import com.aps.common.core.web.domain.BaseEntity;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Builder;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.math.BigDecimal;
|
|
|
/**
|
* 气柜管路物料用量对象 aps_gas_material_usage
|
*
|
* @author zhl
|
* @date 2025-04-25
|
*/
|
@EqualsAndHashCode(callSuper = true)
|
@Data
|
@Schema(description = "气柜管路物料用量实体类")
|
public class ApsGasMaterialUsage extends BaseEntity {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 数据主键
|
*/
|
@Schema(description ="数据主键", type = "String")
|
private Long id;
|
|
/**
|
* 料号
|
*/
|
@Excel(name = "料号")
|
@Schema(description ="料号", type = "String")
|
private String itemNumber;
|
|
/**
|
* 图号
|
*/
|
@Excel(name = "图号")
|
@Schema(description ="图号", type = "String")
|
private String drawingNo;
|
|
/**
|
* 版本
|
*/
|
@Excel(name = "版本")
|
@Schema(description ="版本", type = "String")
|
private String version;
|
|
/**
|
* 工序名称
|
*/
|
@Excel(name = "工序名称")
|
@Schema(description ="工序名称", type = "String")
|
private String processName;
|
|
/**
|
* 标准用量
|
*/
|
@Excel(name = "标准用量")
|
@Schema(description ="标准用量", type = "String")
|
private BigDecimal standardAmount;
|
|
/**
|
* 账套编码
|
*/
|
@Excel(name = "账套编码")
|
@Schema(description ="账套编码", type = "String")
|
private String orgCode;
|
|
/**
|
* 删除标志(0代表存在 1代表删除)
|
*/
|
@Schema(description ="删除标志(0代表存在 1代表删除)", type = "String")
|
private String delFlag;
|
}
|