35 lines
846 B
C#
35 lines
846 B
C#
namespace YLErp.Jobs.Configs
|
|
{
|
|
public class AtMoneyOptionQuotesJobConfig:Dictionary<string,string>
|
|
{
|
|
/// <summary>
|
|
/// 报价计算API网址
|
|
/// </summary>
|
|
public string QuotesUrl
|
|
{
|
|
get
|
|
{
|
|
string key = nameof(QuotesUrl);
|
|
string value = string.Empty;
|
|
if (this.ContainsKey(key))
|
|
{
|
|
value= this[key];
|
|
}
|
|
return value;
|
|
}
|
|
set
|
|
{
|
|
string key = nameof(QuotesUrl);
|
|
if (this.ContainsKey(key))
|
|
{
|
|
this[key] = value;
|
|
}
|
|
else
|
|
{
|
|
this.Add(key, value);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|