using System.Collections.Generic; namespace HH.WCS.Mobox3.RiDong.dto; /// /// 接口返回函数 /// public class MoBoxInputDto { /// /// 操作类型 /// public int op_type { get; set; } /// /// 货品信息 /// public List item_info { get; set; } = new List(); }