mahao
1 year ago
2 changed files with 53 additions and 47 deletions
@ -0,0 +1,53 @@ |
|||||
|
using System; |
||||
|
using System.ComponentModel.DataAnnotations; |
||||
|
|
||||
|
namespace Win.Sfs.SettleAccount.Entities.BQ; |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Jis结算与发运对比请求Dto
|
||||
|
/// </summary>
|
||||
|
public class JisSaSeCompareRequestDto |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 期间
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "期间")] |
||||
|
[Required(ErrorMessage = "{0}不能为空")] |
||||
|
public string Version { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 发运开始时间
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "发运开始时间")] |
||||
|
public DateTime SeStartDateTime { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 发运结束时间
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "发运结束时间")] |
||||
|
public DateTime SeEndDateTime { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 下线开始时间
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "下线开始时间")] |
||||
|
public DateTime DownLineStartDateTime { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 下线结束时间
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "下线结束时间")] |
||||
|
public DateTime DownLineEndDateTime { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 零件号
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "零件号")] |
||||
|
public string LU { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 通用码
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "通用码")] |
||||
|
public string PN { get; set; } |
||||
|
} |
Loading…
Reference in new issue