liding
2 天以前 388bd216d4eb70b367ada95118d1087b45f07ae3
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
package com.ruoyi.basic.entity;
 
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
import com.ruoyi.common.core.domain.MyBaseEntity;
 
/**
 * 煤质方案字段值 实体类
 *
 * @author ruoyi
 * @date 2025-06-09
 */
@Data
@TableName("coal_value")
public class CoalValue extends MyBaseEntity {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键ID
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    /**
     * 关联采购入库主键ID
     */
    @TableField(value = "plan_id")
    private Long planId;
    /**
     * 字段值
     */
    @TableField(value = "coal_value")
    private String coalValue;
    /**
     * 字段
     */
    @TableField(value = "fields")
    private String fields;
    /**
     * 字段名
     */
    @TableField(value = "field_name")
    private String fieldName;
 
}