40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace WMS.Web.Domain.Options
|
|
{
|
|
/// <summary>
|
|
/// erp相关配置文件
|
|
/// </summary>
|
|
public class ErpOptions
|
|
{
|
|
/// <summary>
|
|
/// erp-请求地址
|
|
/// </summary>
|
|
public string EndpointAddress { get; set; }
|
|
|
|
/// <summary>
|
|
/// 账号
|
|
/// </summary>
|
|
public string UserName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 密码
|
|
/// </summary>
|
|
public string Password { get; set; }
|
|
|
|
/// <summary>
|
|
/// erp-Id
|
|
/// </summary>
|
|
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";
|
|
}
|
|
}
|