Files
zszq-trs/Framework/YLErp.Jobs/Configs/EodVARCalcJobConfig.cs
T
2024-05-09 14:06:26 +08:00

32 lines
760 B
C#

namespace YLErp.Jobs.Configs
{
public class EodVARCalcJobConfig : Dictionary<string, string>
{
public string StartDate
{
get
{
string key = nameof(StartDate);
string value = string.Empty;
if (this.ContainsKey(key))
{
value = this[key];
}
return value;
}
set
{
string key = nameof(StartDate);
if (this.ContainsKey(key))
{
this[key] = value;
}
else
{
this.Add(key, value);
}
}
}
}
}