wanggang
1 year ago
3 changed files with 100 additions and 0 deletions
@ -0,0 +1,73 @@ |
|||
using System; |
|||
using System.ComponentModel.DataAnnotations; |
|||
using System.Threading.Tasks; |
|||
using Microsoft.AspNetCore.Authorization; |
|||
using Microsoft.AspNetCore.Mvc; |
|||
|
|||
namespace Win.Sfs.SettleAccount.Entities.BQ; |
|||
|
|||
/// <summary>
|
|||
/// BBAC结算明细
|
|||
/// </summary>
|
|||
[AllowAnonymous] |
|||
[Route("api/settleaccount/[controller]/[action]")]
|
|||
public class BBAC_SA_DETAIL_SERVICE |
|||
{ |
|||
#region 对比
|
|||
/// <summary>
|
|||
/// BBAC结算与发运比对
|
|||
/// </summary>
|
|||
[HttpPost] |
|||
public async Task<string> BBACSaSeCompare(JisSaSeCompareRequestDto jisSaSeCompareRequestDto) |
|||
{ |
|||
await Task.CompletedTask; |
|||
throw new NotImplementedException(); |
|||
} |
|||
#endregion
|
|||
} |
|||
|
|||
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; } |
|||
} |
@ -0,0 +1,26 @@ |
|||
using System; |
|||
using System.Threading.Tasks; |
|||
using Microsoft.AspNetCore.Authorization; |
|||
using Microsoft.AspNetCore.Mvc; |
|||
|
|||
namespace Win.Sfs.SettleAccount.Entities.BQ; |
|||
|
|||
/// <summary>
|
|||
/// HBPO结算明细
|
|||
/// </summary>
|
|||
[AllowAnonymous] |
|||
[Route("api/settleaccount/[controller]/[action]")]
|
|||
public class HBPO_SA_DETAIL_SERVICE |
|||
{ |
|||
#region 对比
|
|||
/// <summary>
|
|||
/// HBPO结算与发运比对
|
|||
/// </summary>
|
|||
[HttpPost] |
|||
public async Task<string> BBACSaSeCompare(JisSaSeCompareRequestDto jisSaSeCompareRequestDto) |
|||
{ |
|||
await Task.CompletedTask; |
|||
throw new NotImplementedException(); |
|||
} |
|||
#endregion
|
|||
} |
Loading…
Reference in new issue