|
@ -110,6 +110,14 @@ namespace Win.Sfs.SettleAccount.Entities.Prices |
|
|
[Display(Name = "合同号")] |
|
|
[Display(Name = "合同号")] |
|
|
[ExporterHeader(DisplayName = "合同号")] |
|
|
[ExporterHeader(DisplayName = "合同号")] |
|
|
public string ContractNo { get; set; } |
|
|
public string ContractNo { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 是否作废
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Display(Name = "是否作废")] |
|
|
|
|
|
[ExporterHeader(DisplayName = "是否已经停用")] |
|
|
|
|
|
[ValueMapping("否", false)] |
|
|
|
|
|
[ValueMapping("是", true)] |
|
|
|
|
|
public bool IsCancel { get; set; } |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
@ -269,48 +277,50 @@ namespace Win.Sfs.SettleAccount.Entities.Prices |
|
|
[Display(Name = "客户零件号")] |
|
|
[Display(Name = "客户零件号")] |
|
|
[ExporterHeader(DisplayName = "客户零件号")] |
|
|
[ExporterHeader(DisplayName = "客户零件号")] |
|
|
public string LU { get; set; } |
|
|
public string LU { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 价格
|
|
|
/// 价格
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[Display(Name = "价格")] |
|
|
[Display(Name = "价格")] |
|
|
[ExporterHeader(DisplayName = "价格")] |
|
|
[ExporterHeader(DisplayName = "价格")] |
|
|
public decimal Price { get; set; } |
|
|
public decimal Price { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 开始时间
|
|
|
/// 开始时间
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[Display(Name = "开始时间")] |
|
|
[Display(Name = "开始时间")] |
|
|
[ExporterHeader(DisplayName = "开始时间")] |
|
|
[ExporterHeader(DisplayName = "开始时间")] |
|
|
public DateTime BeginDate { set; get; } |
|
|
public DateTime BeginDate { set; get; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 结束时间
|
|
|
/// 结束时间
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[Display(Name = "结束时间")] |
|
|
[Display(Name = "结束时间")] |
|
|
[ExporterHeader(DisplayName = "结束时间")] |
|
|
[ExporterHeader(DisplayName = "结束时间")] |
|
|
public DateTime EndDate { set; get; } |
|
|
public DateTime EndDate { set; get; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 客户编码
|
|
|
/// 客户编码
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[Display(Name = "客户编码")] |
|
|
[Display(Name = "客户编码")] |
|
|
[ExporterHeader(DisplayName = "客户编码")] |
|
|
[ExporterHeader(DisplayName = "客户编码")] |
|
|
public string ClientCode { get; set; } |
|
|
public string ClientCode { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 合同签订时间
|
|
|
/// 合同签订时间
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[Display(Name = "合同签订时间")] |
|
|
[Display(Name = "合同签订时间")] |
|
|
[ExporterHeader(DisplayName = "合同签订时间")] |
|
|
[ExporterHeader(DisplayName = "合同签订时间")] |
|
|
public DateTime Date { get; set; } |
|
|
public DateTime Date { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 合同号
|
|
|
/// 合同号
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[Display(Name = "合同号")] |
|
|
[Display(Name = "合同号")] |
|
|
[ExporterHeader(DisplayName = "合同号")] |
|
|
[ExporterHeader(DisplayName = "合同号")] |
|
|
public string ContractNo { get; set; } |
|
|
public string ContractNo { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 是否作废
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Display(Name = "是否作废")] |
|
|
|
|
|
[ExporterHeader(DisplayName = "是否已经停用")] |
|
|
|
|
|
[ValueMapping("否", false)] |
|
|
|
|
|
[ValueMapping("是", true)] |
|
|
|
|
|
public bool IsCancel { get; set; } |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|