using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Dtos { /// /// 业务匹配实体 /// public class BusinessEntityDto { /// /// 名称 /// public string Name { get; set; } = ""; /// /// EDI代码 /// public string EdiCode { get; set; } = ""; } }