using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.TaskPlat.Dtos { public class BookingOrderBCTaskDto { /// /// 序号 /// public int Indx { get; set; } /// /// 对应BC序号 /// public int BCIndx { get; set; } } }