学 赵
1 year ago
31 changed files with 423 additions and 60 deletions
@ -1,12 +1,20 @@ |
|||||
using System; |
using Microsoft.AspNetCore.Authorization; |
||||
|
using Microsoft.AspNetCore.Components; |
||||
|
using System; |
||||
using System.Collections.Generic; |
using System.Collections.Generic; |
||||
using System.Linq; |
using System.Linq; |
||||
using System.Text; |
using System.Text; |
||||
using System.Threading.Tasks; |
using System.Threading.Tasks; |
||||
|
using Volo.Abp.Application.Services; |
||||
|
|
||||
namespace Win.Sfs.SettleAccount.Entities.BQ |
namespace Win.Sfs.SettleAccount.Entities.BQ |
||||
{ |
{ |
||||
public class BBAC_BA_SERVICE |
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[AllowAnonymous] |
||||
|
[Route("api/settleaccount/bbac_ba_service")] |
||||
|
public class BBAC_BA_SERVICE: ApplicationService |
||||
{ |
{ |
||||
} |
} |
||||
} |
} |
||||
|
@ -1,12 +1,46 @@ |
|||||
using System; |
using Microsoft.AspNetCore.Authorization; |
||||
|
|
||||
|
using Microsoft.AspNetCore.Mvc; |
||||
|
using System; |
||||
using System.Collections.Generic; |
using System.Collections.Generic; |
||||
using System.Linq; |
using System.Linq; |
||||
using System.Text; |
using System.Text; |
||||
using System.Threading.Tasks; |
using System.Threading.Tasks; |
||||
|
using Volo.Abp.Application.Dtos; |
||||
|
using Volo.Abp.Application.Services; |
||||
|
using Win.Sfs.SettleAccount.Entities.BQ.Dtos; |
||||
|
|
||||
namespace Win.Sfs.SettleAccount.Entities.BQ |
namespace Win.Sfs.SettleAccount.Entities.BQ |
||||
{ |
{ |
||||
public class BBAC_CAN_SA_SERVICE |
|
||||
|
|
||||
|
[AllowAnonymous] |
||||
|
[Route("api/settleaccount/bbac_can_sa_service")] |
||||
|
public class BBAC_CAN_SA_SERVICE : ApplicationService, IBBAC_CAN_SA_SERVICE |
||||
|
{ |
||||
|
[HttpPost] |
||||
|
[Route("detailquery")] |
||||
|
public Task<PagedResultDto<BBAC_CAN_SA_DETAIL_DTO>> DetailQueryAsync(BBAC_CAN_SA_DETAIL_REQ_DTO input) |
||||
|
{ |
||||
|
throw new NotImplementedException(); |
||||
|
} |
||||
|
[HttpPost] |
||||
|
[Route("export")] |
||||
|
public Task<string> ExportAsync(BBAC_CAN_SA_REQ_DTO input) |
||||
{ |
{ |
||||
|
throw new NotImplementedException(); |
||||
|
} |
||||
|
[HttpPost] |
||||
|
[Route("generateinvoice")] |
||||
|
public Task<bool> GenerateInvoice(BBAC_CAN_SA_REQ_DTO input) |
||||
|
{ |
||||
|
throw new NotImplementedException(); |
||||
|
} |
||||
|
[HttpPost] |
||||
|
[Route("mainquery")] |
||||
|
public Task<PagedResultDto<BBAC_CAN_SA_DTO>> MainQueryAsync(BBAC_CAN_SA_REQ_DTO input) |
||||
|
{ |
||||
|
throw new NotImplementedException(); |
||||
|
} |
||||
} |
} |
||||
} |
} |
||||
|
@ -1,12 +1,38 @@ |
|||||
using System; |
using Microsoft.AspNetCore.Authorization; |
||||
|
|
||||
|
using Microsoft.AspNetCore.Mvc; |
||||
|
using System; |
||||
using System.Collections.Generic; |
using System.Collections.Generic; |
||||
using System.Linq; |
using System.Linq; |
||||
using System.Text; |
using System.Text; |
||||
using System.Threading.Tasks; |
using System.Threading.Tasks; |
||||
|
using Volo.Abp.Application.Dtos; |
||||
|
using Volo.Abp.Application.Services; |
||||
|
using Win.Sfs.SettleAccount.Entities.BQ.Dtos; |
||||
|
|
||||
namespace Win.Sfs.SettleAccount.Entities.BQ |
namespace Win.Sfs.SettleAccount.Entities.BQ |
||||
{ |
{ |
||||
public class BBAC_NOT_SA_SERVICE |
[AllowAnonymous] |
||||
|
[Route("api/settleaccount/bbac_not_sa_service")] |
||||
|
public class BBAC_NOT_SA_SERVICE : ApplicationService, IBBAC_NOT_SA_SERVICE |
||||
|
{ |
||||
|
[HttpPost] |
||||
|
[Route("detailquery")] |
||||
|
public Task<PagedResultDto<BBAC_NOT_SA_DETAIL_DTO>> DetailQueryAsync(BBAC_NOT_SA_DETAIL_REQ_DTO input) |
||||
|
{ |
||||
|
throw new NotImplementedException(); |
||||
|
} |
||||
|
[HttpPost] |
||||
|
[Route("export")] |
||||
|
public Task<string> ExportAsync(BBAC_NOT_SA_DETAIL_REQ_DTO input) |
||||
{ |
{ |
||||
|
throw new NotImplementedException(); |
||||
|
} |
||||
|
[HttpPost] |
||||
|
[Route("generatesettlementorder")] |
||||
|
public Task<bool> GenerateSettlementOrder(BBAC_NOT_SA_DETAIL_REQ_DTO input) |
||||
|
{ |
||||
|
throw new NotImplementedException(); |
||||
|
} |
||||
} |
} |
||||
} |
} |
||||
|
@ -1,12 +1,17 @@ |
|||||
using System; |
using Microsoft.AspNetCore.Authorization; |
||||
|
using Microsoft.AspNetCore.Components; |
||||
|
using System; |
||||
using System.Collections.Generic; |
using System.Collections.Generic; |
||||
using System.Linq; |
using System.Linq; |
||||
using System.Text; |
using System.Text; |
||||
using System.Threading.Tasks; |
using System.Threading.Tasks; |
||||
|
using Volo.Abp.Application.Services; |
||||
|
|
||||
namespace Win.Sfs.SettleAccount.Entities.BQ |
namespace Win.Sfs.SettleAccount.Entities.BQ |
||||
{ |
{ |
||||
public class BBAC_PD_SERVICE |
[AllowAnonymous] |
||||
|
[Route("api/settleaccount/bbac_pd_service")] |
||||
|
public class BBAC_PD_SERVICE : ApplicationService |
||||
{ |
{ |
||||
} |
} |
||||
} |
} |
||||
|
@ -1,12 +1,17 @@ |
|||||
using System; |
using Microsoft.AspNetCore.Authorization; |
||||
|
using Microsoft.AspNetCore.Components; |
||||
|
using System; |
||||
using System.Collections.Generic; |
using System.Collections.Generic; |
||||
using System.Linq; |
using System.Linq; |
||||
using System.Text; |
using System.Text; |
||||
using System.Threading.Tasks; |
using System.Threading.Tasks; |
||||
|
using Volo.Abp.Application.Services; |
||||
|
|
||||
namespace Win.Sfs.SettleAccount.Entities.BQ |
namespace Win.Sfs.SettleAccount.Entities.BQ |
||||
{ |
{ |
||||
public class BBAC_SE_EDI_SERVICE |
[AllowAnonymous] |
||||
|
[Route("api/settleaccount/bbac_se_edi_service")] |
||||
|
public class BBAC_SE_EDI_SERVICE : ApplicationService |
||||
{ |
{ |
||||
} |
} |
||||
} |
} |
||||
|
@ -1,12 +1,17 @@ |
|||||
using System; |
using Microsoft.AspNetCore.Authorization; |
||||
|
using Microsoft.AspNetCore.Components; |
||||
|
using System; |
||||
using System.Collections.Generic; |
using System.Collections.Generic; |
||||
using System.Linq; |
using System.Linq; |
||||
using System.Text; |
using System.Text; |
||||
using System.Threading.Tasks; |
using System.Threading.Tasks; |
||||
|
using Volo.Abp.Application.Services; |
||||
|
|
||||
namespace Win.Sfs.SettleAccount.Entities.BQ |
namespace Win.Sfs.SettleAccount.Entities.BQ |
||||
{ |
{ |
||||
public class HBPO_BA_SERVICE |
[AllowAnonymous] |
||||
|
[Route("api/settleaccount/hbpo_ba_service")] |
||||
|
public class HBPO_BA_SERVICE : ApplicationService |
||||
{ |
{ |
||||
} |
} |
||||
} |
} |
||||
|
@ -1,12 +1,44 @@ |
|||||
using System; |
using Microsoft.AspNetCore.Authorization; |
||||
|
|
||||
|
using Microsoft.AspNetCore.Mvc; |
||||
|
using System; |
||||
using System.Collections.Generic; |
using System.Collections.Generic; |
||||
using System.Linq; |
using System.Linq; |
||||
using System.Text; |
using System.Text; |
||||
using System.Threading.Tasks; |
using System.Threading.Tasks; |
||||
|
using Volo.Abp.Application.Dtos; |
||||
|
using Volo.Abp.Application.Services; |
||||
|
using Win.Sfs.SettleAccount.Entities.BQ.Dtos; |
||||
|
|
||||
namespace Win.Sfs.SettleAccount.Entities.BQ |
namespace Win.Sfs.SettleAccount.Entities.BQ |
||||
{ |
{ |
||||
public class HBPO_CAN_SA_SERVICE |
[AllowAnonymous] |
||||
|
[Route("api/settleaccount/hbpo_can_sa_service")] |
||||
|
public class HBPO_CAN_SA_SERVICE : ApplicationService, IHBPO_CAN_SA_SERVICE |
||||
|
{ |
||||
|
[HttpPost] |
||||
|
[Route("detailquery")] |
||||
|
public Task<PagedResultDto<HBPO_CAN_SA_DETAIL_DTO>> DetailQueryAsync(HBPO_CAN_SA_DETAIL_REQ_DTO input) |
||||
{ |
{ |
||||
|
throw new NotImplementedException(); |
||||
|
} |
||||
|
[HttpPost] |
||||
|
[Route("export")] |
||||
|
public Task<string> ExportAsync(HBPO_CAN_SA_REQ_DTO input) |
||||
|
{ |
||||
|
throw new NotImplementedException(); |
||||
|
} |
||||
|
[HttpPost] |
||||
|
[Route("generateinvoice")] |
||||
|
public Task<bool> GenerateInvoice(HBPO_CAN_SA_REQ_DTO input) |
||||
|
{ |
||||
|
throw new NotImplementedException(); |
||||
|
} |
||||
|
[HttpPost] |
||||
|
[Route("mainquery")] |
||||
|
public Task<PagedResultDto<HBPO_CAN_SA_DTO>> MainQueryAsync(HBPO_CAN_SA_REQ_DTO input) |
||||
|
{ |
||||
|
throw new NotImplementedException(); |
||||
|
} |
||||
} |
} |
||||
} |
} |
||||
|
@ -1,12 +1,38 @@ |
|||||
using System; |
using Microsoft.AspNetCore.Authorization; |
||||
|
|
||||
|
using Microsoft.AspNetCore.Mvc; |
||||
|
using System; |
||||
using System.Collections.Generic; |
using System.Collections.Generic; |
||||
using System.Linq; |
using System.Linq; |
||||
using System.Text; |
using System.Text; |
||||
using System.Threading.Tasks; |
using System.Threading.Tasks; |
||||
|
using Volo.Abp.Application.Dtos; |
||||
|
using Volo.Abp.Application.Services; |
||||
|
using Win.Sfs.SettleAccount.Entities.BQ.Dtos; |
||||
|
|
||||
namespace Win.Sfs.SettleAccount.Entities.BQ |
namespace Win.Sfs.SettleAccount.Entities.BQ |
||||
{ |
{ |
||||
public class HBPO_NOT_SA_SERVICE |
[AllowAnonymous] |
||||
|
[Route("api/settleaccount/hbpo_not_sa_service")] |
||||
|
public class HBPO_NOT_SA_SERVICE : ApplicationService, IHBPO_NOT_SA_SERVICE |
||||
|
{ |
||||
|
[HttpPost] |
||||
|
[Route("detailquery")] |
||||
|
public Task<PagedResultDto<HBPO_NOT_SA_DETAIL_DTO>> DetailQueryAsync(HBPO_NOT_SA_DETAIL_REQ_DTO input) |
||||
|
{ |
||||
|
throw new NotImplementedException(); |
||||
|
} |
||||
|
[HttpPost] |
||||
|
[Route("export")] |
||||
|
public Task<string> ExportAsync(HBPO_NOT_SA_DETAIL_REQ_DTO input ) |
||||
{ |
{ |
||||
|
throw new NotImplementedException(); |
||||
|
} |
||||
|
[HttpPost] |
||||
|
[Route("generatesettlementorder")] |
||||
|
public Task<bool> GenerateSettlementOrder(HBPO_NOT_SA_DETAIL_REQ_DTO input) |
||||
|
{ |
||||
|
throw new NotImplementedException(); |
||||
|
} |
||||
} |
} |
||||
} |
} |
||||
|
@ -1,12 +1,17 @@ |
|||||
using System; |
using Microsoft.AspNetCore.Authorization; |
||||
|
using Microsoft.AspNetCore.Components; |
||||
|
using System; |
||||
using System.Collections.Generic; |
using System.Collections.Generic; |
||||
using System.Linq; |
using System.Linq; |
||||
using System.Text; |
using System.Text; |
||||
using System.Threading.Tasks; |
using System.Threading.Tasks; |
||||
|
using Volo.Abp.Application.Services; |
||||
|
|
||||
namespace Win.Sfs.SettleAccount.Entities.BQ |
namespace Win.Sfs.SettleAccount.Entities.BQ |
||||
{ |
{ |
||||
public class HBPO_PD_SERVICE |
[AllowAnonymous] |
||||
|
[Route("api/settleaccount/hbpo_pd_service")] |
||||
|
public class HBPO_PD_SERVICE : ApplicationService |
||||
{ |
{ |
||||
} |
} |
||||
} |
} |
||||
|
@ -1,12 +1,17 @@ |
|||||
using System; |
using Microsoft.AspNetCore.Authorization; |
||||
|
using Microsoft.AspNetCore.Components; |
||||
|
using System; |
||||
using System.Collections.Generic; |
using System.Collections.Generic; |
||||
using System.Linq; |
using System.Linq; |
||||
using System.Text; |
using System.Text; |
||||
using System.Threading.Tasks; |
using System.Threading.Tasks; |
||||
|
using Volo.Abp.Application.Services; |
||||
|
|
||||
namespace Win.Sfs.SettleAccount.Entities.BQ |
namespace Win.Sfs.SettleAccount.Entities.BQ |
||||
{ |
{ |
||||
public class HBPO_SE_EDI_SERVICE |
[AllowAnonymous] |
||||
|
[Route("api/settleaccount/hbpo_se_edi_service")] |
||||
|
public class HBPO_SE_EDI_SERVICE : ApplicationService |
||||
{ |
{ |
||||
} |
} |
||||
} |
} |
||||
|
@ -1,12 +1,17 @@ |
|||||
using System; |
using Microsoft.AspNetCore.Authorization; |
||||
|
using Microsoft.AspNetCore.Components; |
||||
|
using System; |
||||
using System.Collections.Generic; |
using System.Collections.Generic; |
||||
using System.Linq; |
using System.Linq; |
||||
using System.Text; |
using System.Text; |
||||
using System.Threading.Tasks; |
using System.Threading.Tasks; |
||||
|
using Volo.Abp.Application.Services; |
||||
|
|
||||
namespace Win.Sfs.SettleAccount.Entities.BQ |
namespace Win.Sfs.SettleAccount.Entities.BQ |
||||
{ |
{ |
||||
public class PUB_BA_SERVICE |
[AllowAnonymous] |
||||
|
[Route("api/settleaccount/pub_ba_service")] |
||||
|
public class PUB_BA_SERVICE : ApplicationService |
||||
{ |
{ |
||||
} |
} |
||||
} |
} |
||||
|
@ -1,12 +1,44 @@ |
|||||
using System; |
using Microsoft.AspNetCore.Authorization; |
||||
|
|
||||
|
using Microsoft.AspNetCore.Mvc; |
||||
|
using System; |
||||
using System.Collections.Generic; |
using System.Collections.Generic; |
||||
using System.Linq; |
using System.Linq; |
||||
using System.Text; |
using System.Text; |
||||
using System.Threading.Tasks; |
using System.Threading.Tasks; |
||||
|
using Volo.Abp.Application.Dtos; |
||||
|
using Volo.Abp.Application.Services; |
||||
|
using Win.Sfs.SettleAccount.Entities.BQ.Dtos; |
||||
|
|
||||
namespace Win.Sfs.SettleAccount.Entities.BQ |
namespace Win.Sfs.SettleAccount.Entities.BQ |
||||
{ |
{ |
||||
public class PUB_CAN_SA_SERVICE |
[AllowAnonymous] |
||||
|
[Route("api/settleaccount/pub_can_sa_service")] |
||||
|
public class PUB_CAN_SA_SERVICE : ApplicationService, IPUB_CAN_SA_SERVICE |
||||
|
{ |
||||
|
[HttpPost] |
||||
|
[Route("detailquery")] |
||||
|
public Task<PagedResultDto<PUB_CAN_SA_DETAIL_DTO>> DetailQueryAsync(HBPO_CAN_SA_DETAIL_REQ_DTO input) |
||||
{ |
{ |
||||
|
throw new NotImplementedException(); |
||||
|
} |
||||
|
[HttpPost] |
||||
|
[Route("export")] |
||||
|
public Task<string> ExportAsync(PUB_CAN_SA_REQ_DTO input) |
||||
|
{ |
||||
|
throw new NotImplementedException(); |
||||
|
} |
||||
|
[HttpPost] |
||||
|
[Route("generateInvoice")] |
||||
|
public Task<bool> GenerateInvoice(PUB_CAN_SA_REQ_DTO input) |
||||
|
{ |
||||
|
throw new NotImplementedException(); |
||||
|
} |
||||
|
[HttpPost] |
||||
|
[Route("mainquery")] |
||||
|
public Task<PagedResultDto<PUB_CAN_SA_DTO>> MainQueryAsync(HBPO_CAN_SA_REQ_DTO input) |
||||
|
{ |
||||
|
throw new NotImplementedException(); |
||||
|
} |
||||
} |
} |
||||
} |
} |
||||
|
@ -1,12 +1,38 @@ |
|||||
using System; |
using Microsoft.AspNetCore.Authorization; |
||||
|
|
||||
|
using Microsoft.AspNetCore.Mvc; |
||||
|
using System; |
||||
using System.Collections.Generic; |
using System.Collections.Generic; |
||||
using System.Linq; |
using System.Linq; |
||||
using System.Text; |
using System.Text; |
||||
using System.Threading.Tasks; |
using System.Threading.Tasks; |
||||
|
using Volo.Abp.Application.Dtos; |
||||
|
using Volo.Abp.Application.Services; |
||||
|
using Win.Sfs.SettleAccount.Entities.BQ.Dtos; |
||||
|
|
||||
namespace Win.Sfs.SettleAccount.Entities.BQ |
namespace Win.Sfs.SettleAccount.Entities.BQ |
||||
{ |
{ |
||||
public class PUB_NOT_SA_SERVICE |
[AllowAnonymous] |
||||
|
[Route("api/settleaccount/pub_not_sa_service")] |
||||
|
public class PUB_NOT_SA_SERVICE : ApplicationService, IPUB_NOT_SA_SERVICE |
||||
|
{ |
||||
|
[HttpPost] |
||||
|
[Route("detailquery")] |
||||
|
public Task<PagedResultDto<PUB_NOT_SA_DETAIL_DTO>> DetailQueryAsync(PUB_NOT_SA_DETAIL_REQ_DTO input) |
||||
|
{ |
||||
|
throw new NotImplementedException(); |
||||
|
} |
||||
|
[HttpPost] |
||||
|
[Route("export")] |
||||
|
public Task<string> ExportAsync(PUB_NOT_SA_DETAIL_REQ_DTO input) |
||||
{ |
{ |
||||
|
throw new NotImplementedException(); |
||||
|
} |
||||
|
[HttpPost] |
||||
|
[Route("generatesettlementorder")] |
||||
|
public Task<bool> GenerateSettlementOrder(PUB_NOT_SA_DETAIL_REQ_DTO input) |
||||
|
{ |
||||
|
throw new NotImplementedException(); |
||||
|
} |
||||
} |
} |
||||
} |
} |
||||
|
@ -1,12 +1,17 @@ |
|||||
using System; |
using Microsoft.AspNetCore.Authorization; |
||||
|
using Microsoft.AspNetCore.Components; |
||||
|
using System; |
||||
using System.Collections.Generic; |
using System.Collections.Generic; |
||||
using System.Linq; |
using System.Linq; |
||||
using System.Text; |
using System.Text; |
||||
using System.Threading.Tasks; |
using System.Threading.Tasks; |
||||
|
using Volo.Abp.Application.Services; |
||||
|
|
||||
namespace Win.Sfs.SettleAccount.Entities.BQ |
namespace Win.Sfs.SettleAccount.Entities.BQ |
||||
{ |
{ |
||||
public class PUB_PD_SERVICE |
[AllowAnonymous] |
||||
|
[Route("api/settleaccount/pub_pd_service")] |
||||
|
public class PUB_PD_SERVICE : ApplicationService |
||||
{ |
{ |
||||
} |
} |
||||
} |
} |
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue