|
|
@ -237,6 +237,85 @@ namespace Win.Sfs.SettleAccount.Entities.BQ.Dtos |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public class INVOICE_WAIT_DETAIL_EXT_DTO |
|
|
|
{ |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
///期间
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "期间")] |
|
|
|
public int Version { get; set; } |
|
|
|
[Display(Name = "金税发票号")] |
|
|
|
public string RealInvbillNum { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
[Display(Name = "发票日期")] |
|
|
|
public DateTime? InvDate { set; get; } |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
///发票号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "发票号")] |
|
|
|
public string InvbillNum { get; set; } |
|
|
|
/// <summary>
|
|
|
|
///发票分组号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "发票分组号")] |
|
|
|
public string InvGroupNum { get; set; } |
|
|
|
/// <summary>
|
|
|
|
///零件号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "客户零件号")] |
|
|
|
public string LU { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
///零件号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "零件号")] |
|
|
|
public string PartCode { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
///单价
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "单价")] |
|
|
|
public decimal PRICE { get; set; } |
|
|
|
/// <summary>
|
|
|
|
///数量
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "数量")] |
|
|
|
public decimal Qty { get; set; } |
|
|
|
/// <summary>
|
|
|
|
///金额
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "金额")] |
|
|
|
public decimal Amt { get; set; } |
|
|
|
/// <summary>
|
|
|
|
///业务分类
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "业务分类")] |
|
|
|
public string BussiessType { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
///扩展字段3
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "价格开始日期")] |
|
|
|
public DateTime BeginDate { get; set; } |
|
|
|
/// <summary>
|
|
|
|
///扩展字段4
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "价格结束日期")] |
|
|
|
public DateTime EndDate { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public class INVOICE_WAIT_DETAIL_DTO |
|
|
|
|
|
|
|
{ |
|
|
|