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.io.Serial;
|
|
/**
|
* 钣金标准需求异常信息对象 aps_plate_standard_require_error
|
*
|
* @author zhl
|
* @date 2025-05-08
|
*/
|
@EqualsAndHashCode(callSuper = true)
|
@Data
|
@Schema(description = "钣金标准需求异常信息实体类")
|
@Builder
|
public class ApsPlateStandardRequireError extends BaseEntity
|
{
|
@Serial
|
private static final long serialVersionUID = 1L;
|
private Long id;
|
|
/** 批次号 */
|
@Excel(name = "批次号")
|
@Schema(description = "批次号")
|
private String batchNumber;
|
|
/** 需求Id号 */
|
@Excel(name = "需求Id号")
|
@Schema(description = "需求Id号")
|
private Long requireId;
|
|
/** 工单号 */
|
@Excel(name = "工单号")
|
@Schema(description = "工单号")
|
private String docNum;
|
|
/** 料号 */
|
@Excel(name = "料号")
|
@Schema(description = "料号")
|
private String itemNum;
|
|
/** 适用工厂 */
|
@Excel(name = "适用工厂")
|
@Schema(description = "适用工厂")
|
private String orgCode;
|
|
/** 异常信息 */
|
@Excel(name = "异常信息")
|
@Schema(description = "异常信息")
|
private String message;
|
|
/** 是否删除,0有效 1删除 */
|
@Schema(description = "是否删除,0有效 1删除")
|
private String delFlag;
|
|
}
|