using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Entity.BllAsnEntity
{
///
///采购计划单明细表
///
[SugarTable("BllProcurePlanNoticeDetail")]
public class BllProcurePlanNoticeDetail:BaseEntity
{
///
/// BllProcurePlanNotice(采购计划单总表)主键
///
public int ParentId { get; set; }
///
/// Desc:物料编码
/// Default:
/// Nullable:True
///
public string SkuNo { get; set; }
///
/// Desc:物料名称
/// Default:
/// Nullable:True
///
public string SkuName { get; set; }
///
/// Desc:规格
/// Default:
/// Nullable:True
///
public string Standard { get; set; }
///
/// Desc:数量
/// Default:
/// Nullable:False
///
public decimal Qty { get; set; }
///
/// Desc:入库数量
/// Default:0
/// Nullable:True
///
public decimal? CompleteQty { get; set; }
///
/// Desc:包装编号
/// Default:
/// Nullable:True
///
public string PackagNo { get; set; }
///
/// Desc:单价
/// Default:
/// Nullable:True
///
public decimal? Price { get; set; }
///
/// Desc:总金额
/// Default:
/// Nullable:True
///
public decimal? Money { get; set; }
///
/// Desc:状态
/// Default:
/// Nullable:True
///
public string Status { get; set; }
///
/// 完成时间
///
public DateTime? CompleteTime { get; set; }
///
/// 上游系统行号
///
public string OrderDetailCode { get; set; }
///
/// Desc:客户编号
/// Default:
/// Nullable:True
///
public string CustomerNo { get; set; }
///
/// Desc:客户名称
/// Default:
/// Nullable:True
///
public string CustomerName { get; set; }
}
}