using System; using System.Collections.Generic; using System.Text; namespace WMS.Web.Domain.Options { /// /// erp相关配置文件 /// public class ErpOptions { /// /// erp-请求地址 /// public string EndpointAddress { get; set; } /// /// 账号 /// public string UserName { get; set; } /// /// 密码 /// public string Password { get; set; } /// /// erp-Id /// public string ErpId { get; set; } } }