111
啊鑫
21 小时以前 8b7abd97e7b69800789134ed8e809e19a5b5ba74
entity/vDhmx.cs
@@ -1,83 +1,82 @@
namespace NewPdaSqlServer.entity
using SqlSugar;
namespace NewPdaSqlServer.entity;
/// <summary>
///     到货检验明细视图实体
/// </summary>
[SugarTable("v_dhmx")]
public class vDhmx
{
    using SqlSugar;
    /// <summary>
    ///     父级GUID
    /// </summary>
    [SugarColumn(ColumnName = "hGuid")]
    public string ParentGuid { get; set; }
    /// <summary>
    /// 到货检验明细视图实体
    ///     明细GUID
    /// </summary>
    [SugarTable("v_dhmx")]
    public class vDhmx
    {
        /// <summary>
        /// 父级GUID
        /// </summary>
        [SugarColumn(ColumnName = "hGuid")]
        public string ParentGuid { get; set; }
    [SugarColumn(ColumnName = "dhmxGuid")]
    public string DetailGuid { get; set; }
        /// <summary>
        /// 明细GUID
        /// </summary>
        [SugarColumn(ColumnName = "dhmxGuid")]
        public string DetailGuid { get; set; }
    /// <summary>
    ///     数量
    /// </summary>
    [SugarColumn(ColumnName = "quantity")]
    public decimal Quantity { get; set; }
        /// <summary>
        /// 数量
        /// </summary>
        [SugarColumn(ColumnName = "quantity")]
        public decimal Quantity { get; set; }
    /// <summary>
    ///     免检标识
    /// </summary>
    [SugarColumn(ColumnName = "免检")]
    public string ExemptInspection { get; set; }
        /// <summary>
        /// 免检标识
        /// </summary>
        [SugarColumn(ColumnName = "免检")]
        public string ExemptInspection { get; set; }
    /// <summary>
    ///     检验状态
    /// </summary>
    [SugarColumn(ColumnName = "检验状态")]
    public string InspectionStatus { get; set; }
        /// <summary>
        /// 检验状态
        /// </summary>
        [SugarColumn(ColumnName = "检验状态")]
        public string InspectionStatus { get; set; }
    /// <summary>
    ///     IQC提交状态
    /// </summary>
    [SugarColumn(ColumnName = "iqc提交")]
    public int IqcSubmission { get; set; }
        /// <summary>
        /// IQC提交状态
        /// </summary>
        [SugarColumn(ColumnName = "iqc提交")]
        public int IqcSubmission { get; set; }
    /// <summary>
    ///     检验结果
    /// </summary>
    [SugarColumn(ColumnName = "检验结果")]
    public string InspectionResult { get; set; }
        /// <summary>
        /// 检验结果
        /// </summary>
        [SugarColumn(ColumnName = "检验结果")]
        public string InspectionResult { get; set; }
    /// <summary>
    ///     判定结果
    /// </summary>
    [SugarColumn(ColumnName = "判定结果")]
    public string JudgmentResult { get; set; }
        /// <summary>
        /// 判定结果
        /// </summary>
        [SugarColumn(ColumnName = "判定结果")]
        public string JudgmentResult { get; set; }
    /// <summary>
    ///     处理意见
    /// </summary>
    [SugarColumn(ColumnName = "处理意见")]
    public string HandlingSuggestion { get; set; }
        /// <summary>
        /// 处理意见
        /// </summary>
        [SugarColumn(ColumnName = "处理意见")]
        public string HandlingSuggestion { get; set; }
    /// <summary>
    ///     挑选数量
    /// </summary>
    [SugarColumn(ColumnName = "挑选数量")]
    public decimal? SelectionQuantity { get; set; }
        /// <summary>
        /// 挑选数量
        /// </summary>
        [SugarColumn(ColumnName = "挑选数量")]
        public decimal? SelectionQuantity { get; set; }
    /// <summary>
    ///     选别类别
    /// </summary>
    [SugarColumn(ColumnName = "选别类别")]
    public string SelectionType { get; set; }
        /// <summary>
        /// 选别类别
        /// </summary>
        [SugarColumn(ColumnName = "选别类别")]
        public string SelectionType { get; set; }
        /// <summary>
        /// 是否能入库 (1:能入库 0:不能入库)
        /// </summary>
        [SugarColumn(ColumnName = "是否能入库")]
        public int CanStore { get; set; }
    }
}
    /// <summary>
    ///     是否能入库 (1:能入库 0:不能入库)
    /// </summary>
    [SugarColumn(ColumnName = "是否能入库")]
    public int CanStore { get; set; }
}