liuyunfeng
1 year ago
18 changed files with 479 additions and 594 deletions
@ -1,13 +1,66 @@ |
|||
using System; |
|||
using Microsoft.AspNetCore.Mvc; |
|||
using Microsoft.EntityFrameworkCore; |
|||
using Microsoft.Extensions.Logging; |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Diagnostics; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
using Volo.Abp; |
|||
using Volo.Abp.Application.Dtos; |
|||
using Volo.Abp.Application.Services; |
|||
using Volo.Abp.Domain.Repositories; |
|||
using Volo.Abp.Uow; |
|||
using WY.NewJit.Common; |
|||
using WY.NewJit.Commons; |
|||
using WY.NewJit.EntityFrameworkCore; |
|||
using WY.NewJit.Extends; |
|||
using WY.NewJit.Extends.PaiGe; |
|||
using WY.NewJit.Extends.PaiGe.WMS; |
|||
using WY.NewJit.MsgBaseData; |
|||
using WY.NewJit.MsgCheck; |
|||
using WY.NewJit.PrintTable.Dtos; |
|||
|
|||
namespace WY.NewJit.PrintTable |
|||
{ |
|||
public class AlreadyPrintAppService : ApplicationService, IAlreadyPrintAppService |
|||
{ |
|||
/// <summary>
|
|||
/// 取待打印列表
|
|||
/// </summary>
|
|||
/// <param name="input">输入查询条件</param>
|
|||
/// <returns>返回符合条件的排序分页列表</returns>
|
|||
//[HttpGet]
|
|||
//[UnitOfWork(false)]
|
|||
//[Route("wait-print-list")]
|
|||
//public virtual async Task<PagedResultDto<WaitPrintDto>> GetWaitPrintListAsync(QueryAlreadyPrintDto input)
|
|||
//{
|
|||
// _logger.LogDebug(_errorMessagePrefix + "GetListAsync 进入");
|
|||
// try
|
|||
// {
|
|||
// PagedResultDto<WaitPrintDto> ret = new PagedResultDto<WaitPrintDto>();
|
|||
// if (input.BusinessType == BusinessTypeEnum.MenBan)
|
|||
// {
|
|||
// ret = await QueryByConditionAsync(input, (PagedAndSortedBase)input);
|
|||
// }
|
|||
// else if (input.BusinessType == BusinessTypeEnum.OtherZhuHuBan || input.BusinessType == BusinessTypeEnum.ZhuHuBan)
|
|||
// {
|
|||
// ret = await QueryZHBByConditionAsync(input, (PagedAndSortedBase)input);
|
|||
// }
|
|||
// else
|
|||
// {
|
|||
// throw new BusinessException("1001", "请传入正确的BusinessType参数!");
|
|||
// }
|
|||
// return ret;
|
|||
// }
|
|||
// catch (Exception ex)
|
|||
// {
|
|||
// string errMsg = _errorMessagePrefix + "GetListAsync 执行出错:" + ex.Message;
|
|||
// _logger.LogError(errMsg);
|
|||
// return new PagedResultDto<WaitPrintDto>(0, new List<WaitPrintDto>());
|
|||
// }
|
|||
//}
|
|||
|
|||
} |
|||
} |
|||
|
@ -1,84 +0,0 @@ |
|||
using JetBrains.Annotations; |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
namespace WY.NewJit.Extends |
|||
{ |
|||
/// <summary>
|
|||
/// 生产线管理
|
|||
/// </summary>
|
|||
public class MenBanPackingRec2 : FullAuditedAggregateRoot<Guid> |
|||
{ |
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column00 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column01 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column02 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column03 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column04 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column05 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column06 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column07 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column08 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column09 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column10 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column11 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column12 { get; set; } |
|||
|
|||
|
|||
|
|||
} |
|||
} |
@ -1,102 +0,0 @@ |
|||
using JetBrains.Annotations; |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
using Volo.Abp.Domain.Entities.Auditing; |
|||
|
|||
namespace WY.NewJit.Extends |
|||
{ |
|||
/// <summary>
|
|||
/// 生产线管理
|
|||
/// </summary>
|
|||
public class ZhuHuBanPackingRec2 : FullAuditedAggregateRoot<Guid> |
|||
{ |
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column00 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column01 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column02 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column03 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column04 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column05 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column06 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column07 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column08 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column09 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column10 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column11 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column12 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column13 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column14 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column15 { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 列N
|
|||
/// </summary>
|
|||
public virtual string Column16 { get; set; } |
|||
|
|||
} |
|||
} |
Loading…
Reference in new issue