lvzb
1 year ago
21 changed files with 4656 additions and 4267 deletions
@ -0,0 +1,96 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using System.Text.RegularExpressions; |
|||
using Volo.Abp.Application.Dtos; |
|||
using WY.NewJit.Common; |
|||
using WY.NewJit.MsgCheck; |
|||
|
|||
namespace WY.NewJit.PrintTable.Dtos |
|||
{ |
|||
[Serializable] |
|||
public class QueryWaitPrintDto : PagedAndSortedBase |
|||
{ |
|||
/// <summary>
|
|||
/// 大众顺序号起
|
|||
/// </summary>
|
|||
public int? HostSNBegin { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 大众顺序号止
|
|||
/// </summary>
|
|||
public int? HostSNEnd { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// KNR起
|
|||
/// </summary>
|
|||
public string KNRBegin { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// KNR止
|
|||
/// </summary>
|
|||
public string KNREnd { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 底牌号起
|
|||
/// </summary>
|
|||
public string VINBegin { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 底牌号止
|
|||
/// </summary>
|
|||
public string VINEnd { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 总成ID
|
|||
/// </summary>
|
|||
public Guid? AssemblyID { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 上线时间起
|
|||
/// </summary>
|
|||
public DateTime? OnlineTimeBegin { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 上线时间止
|
|||
/// </summary>
|
|||
public DateTime? OnlineTimeEnd { get; set; } |
|||
|
|||
|
|||
/// <summary>
|
|||
/// 车型代码(取通用字典)
|
|||
/// </summary>
|
|||
public string VehicleModelCode { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 生产线(派格按生产线分类)
|
|||
/// </summary>
|
|||
public virtual string ProductLine { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 接收时间起
|
|||
/// </summary>
|
|||
public DateTime? ReceiveTimeBegin { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 接收时间止
|
|||
/// </summary>
|
|||
public DateTime? ReceiveTimeEnd { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 单据状态(0 空;1 未匹配;2 未打印;3 已打印 4 断号)
|
|||
/// </summary>
|
|||
public BillStatusEnum? BillStatus { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 打印类型: 1 顺序打印 2 补账打印
|
|||
/// </summary>
|
|||
public PrintTypeEnum? PrintType { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 业务类型:1 门板 2 其它柱护板 3 柱护板
|
|||
/// </summary>
|
|||
public BusinessTypeEnum? BusinessType { get; set; } |
|||
} |
|||
} |
|||
|
@ -0,0 +1,12 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace WY.NewJit.PrintTable |
|||
{ |
|||
public interface IAlreadyPrintAppService |
|||
{ |
|||
} |
|||
} |
@ -0,0 +1,19 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace WY.NewJit.PrintTable |
|||
{ |
|||
public interface IWaitPrintAppService |
|||
{ |
|||
/// <summary>
|
|||
/// 根据生产线获取正常打印单据的起始大众顺序号
|
|||
/// </summary>
|
|||
/// <param name="productLine">生产线</param>
|
|||
/// <returns>起始大众顺序号</returns>
|
|||
Task<ObjectResultDto<int?>> GetPrintStartHostSN2(string productLine, string isZhuHuBan, string GroupName = null); |
|||
|
|||
} |
|||
} |
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because it is too large
@ -0,0 +1,17 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
using Volo.Abp.Domain.Entities; |
|||
|
|||
namespace WY.NewJit.PrintTable |
|||
{ |
|||
public class LastPrintHostSN : Entity<Guid> |
|||
{ |
|||
public string ProductLineCode { get; set; } |
|||
|
|||
public int HostSN { get; set; } |
|||
|
|||
} |
|||
} |
Loading…
Reference in new issue