sfd
2025-05-20 a679707708e8595a96bb67d2c38edceeb2d1e121
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package com.aps.core.domain.ApsPlate;
 
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;
 
}