zyf
2025-09-29 263e0e39c18a4ade744b4d1111fe8dc9de7875e8
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; }
 
    
}