using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core.DB.Models; namespace WIDESEA_Model.Models { /// /// /// [SugarTable("Dt_OutboundOrderDetail_LabelsBYD")] public class Dt_OutboundOrderDetail_LabelsBYD { /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "Id", IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "REQUIREMENT_NO")] public string? REQUIREMENT_NO { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "REQUIREMENT_ITEM_NO")] public string? REQUIREMENT_ITEM_NO { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "LABEL_NO")] public string? LABEL_NO { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "CONTENT_LABEL_NO")] public string? CONTENT_LABEL_NO { get; set; } } }