zyf
2025-12-04 174707ef5fb6cc8e2b0f973b5f7345e7b89b2d77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using SqlSugar;
 
namespace MES.Service.Modes;
 
/// <summary>
///     首检不良信息
/// </summary>
[SugarTable("V_SJ_BAD_REASON")]
public class SJBadReason
{
    /// <summary>
    ///     物料ID
    /// </summary>
    [SugarColumn(ColumnName = "BILL_NO")]
    public string? BillNo { get; set; }
 
    /// <summary>
    ///     不良原因
    /// </summary>
    [SugarColumn(ColumnName = "REASON")]
    public string? Reason { get; set; }
 
    
}