31 lines
681 B
C#
31 lines
681 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Syc.Abp.Application.Contracts.Model
|
|
{
|
|
|
|
public class BusAndDataTrasInput : PagedInput
|
|
{
|
|
/// <summary>
|
|
/// 处理类型
|
|
/// </summary>
|
|
public string? DealType { get; set; }
|
|
/// <summary>
|
|
/// 车间区域
|
|
/// </summary>
|
|
public string? WorkShop { get; set; }
|
|
/// <summary>
|
|
/// 工作区域
|
|
/// </summary>
|
|
public int? Region { get; set; }
|
|
|
|
/// <summary>
|
|
/// 点位
|
|
/// </summary>
|
|
public int? Position { get; set; }
|
|
}
|
|
}
|