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 { /// /// 处理类型 /// public string? DealType { get; set; } /// /// 车间区域 /// public string? WorkShop { get; set; } /// /// 工作区域 /// public int? Region { get; set; } /// /// 点位 /// public int? Position { get; set; } } }