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; }
public readonly string cache_materail_key = "erp_materials_list";
public readonly string cache_org_key = "erp_org_list";
public readonly string cache_supplier_key = "erp_supplier_list";
public readonly string cache_customer_key = "erp_customer_list";
public readonly string cache_stock_key = "erp_stock_list";
public readonly string cache_substock_key = "erp_substock_list";
}
}