using System; using System.Collections.Generic; using System.Text; namespace wms.dto.request.sx { /// /// 同步箱号状态 /// public class SynchronizeBoxStatusRequest : BaseRequest { /// /// 箱号 /// public string HuNr { get; set; } /// /// 同步状态 /// public string UseStatus { get; set; } } }