using System;
using SqlSugar;
using System.Linq;
using System.ComponentModel;
using System.Collections.Generic;
using Tiger.Model;
namespace Tiger.Model.Minsun
{
///
/// 实体:WMS_SRM_ASN_LINES
///
[Serializable]
[SugarTable("WMS_SRM_ASN_LINES")]
public class WMS_SRM_ASN_LINES : iDBEntity
{
#region 构造函数
///
/// 实体:WMS_SRM_ASN_LINES
///
public WMS_SRM_ASN_LINES() {}
#endregion
#region 公共属性
///
///
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public long Id { get; set; }
///
///
///
public string DeliveryNo { get; set; }
///
///
///
public int lineNo { get; set; }
///
///
///
public string poErpNo { get; set; }
///
///
///
public int purchaseType { get; set; }
///
///
///
public string poLineNo { get; set; }
///
///
///
public string productCode { get; set; }
///
///
///
public string productName { get; set; }
///
///
///
public string productScale { get; set; }
///
///
///
public string deliveryUnitCode { get; set; }
///
///
///
public string deliveryUnitName { get; set; }
///
///
///
public double deliveryQty { get; set; }
///
///
///
public double deliveryValuationQty { get; set; }
///
///
///
public double price { get; set; }
///
///
///
public double taxPrice { get; set; }
///
///
///
public int status { get; set; }
///
///
///
public int receiveStatus { get; set; }
///
///
///
public double grossWeight { get; set; }
///
///
///
public double netWeight { get; set; }
///
///
///
public string unitWeightCode { get; set; }
///
///
///
public string unitWeightName { get; set; }
///
///
///
public double packingQty { get; set; }
///
///
///
public string brandName { get; set; }
///
///
///
public string otherExtend { get; set; }
///
///
///
public string originalCountryCode { get; set; }
///
///
///
public string originalCountryName { get; set; }
///
///
///
public string storeCode { get; set; }
///
///
///
public string storeName { get; set; }
///
///
///
public string remark { get; set; }
///
///
///
public string extendN01 { get; set; }
///
///
///
public string extendN02 { get; set; }
///
///
///
public string extendN03 { get; set; }
///
///
///
public string extendN04 { get; set; }
///
///
///
public int applyDeliveryQty { get; set; }
///
///
///
public int applyDeliveryValuationQty { get; set; }
///
///
///
public int srcBillType { get; set; }
///
///
///
public string srcOrderLineRemark { get; set; }
///
///
///
public int urgentFlag { get; set; }
///
///
///
public string rtoErpNo { get; set; }
///
///
///
public string rtoLineNo { get; set; }
///
///
///
public double prodLength { get; set; }
///
///
///
public double prodWidth { get; set; }
///
///
///
public double prodHeight { get; set; }
///
///
///
public string buyerName { get; set; }
///
///
///
public DateTime expectedDate { get; set; } = DateTime.MinValue;
///
///
///
public DateTime answerDate { get; set; } = DateTime.MinValue;
///
///
///
public string currencyCode { get; set; }
///
///
///
public string currencyName { get; set; }
///
///
///
public int sendVerifyStatus { get; set; }
///
///
///
public string resultFlag { get; set; }
///
///
///
public DateTime CreationTime { get; set; } = DateTime.MinValue;
///
///
///
public DateTime LastModificationTime { get; set; } = DateTime.MinValue;
#endregion
#region 虚拟属性
/*例子
[SugarColumn(IsIgnore = true)]
public string FieldName { get; set; }
*/
#endregion
#region 枚举变量
/*例子
public enum FieldNames
{
[Description("枚举描述0")]
Enum0,
[Description("枚举描述1")]
Enum1,
}
*/
#endregion
#region 公共方法
#endregion
}//endClass
}