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
|
{
|
/// <summary>
|
///
|
///</summary>
|
[SugarTable("Dt_OutboundOrderDetail_LabelsBYD")]
|
public class Dt_OutboundOrderDetail_LabelsBYD
|
{
|
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "Id", IsPrimaryKey = true, IsIdentity = true)]
|
public int Id { get; set; }
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "REQUIREMENT_NO")]
|
public string? REQUIREMENT_NO { get; set; }
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "REQUIREMENT_ITEM_NO")]
|
public string? REQUIREMENT_ITEM_NO { get; set; }
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "LABEL_NO")]
|
public string? LABEL_NO { get; set; }
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "CONTENT_LABEL_NO")]
|
public string? CONTENT_LABEL_NO { get; set; }
|
|
|
}
|
|
}
|