Files
zszq-trs/YLErpDAL/Modules/RiskEngine/Dto/RiskVariableDetail.cs
T

28 lines
997 B
C#

using System;
using YLErp.DBModels;
namespace YLErp.Modules.RiskEngine.Dto
{
public class RiskVariableDetail
{
public long Id { get; set; }
public string VariableCode { get; set; }
public string VariableName { get; set; }
public RiskVariableCategory Category { get; set; }
public RiskVariableDataType DataType { get; set; }
public string Unit { get; set; }
public string ValueDomain { get; set; }
public string Description { get; set; }
public string ImplementationScript { get; set; }
public string SourceExpression { get; set; }
public bool IsImplemented { get; set; }
public int Version { get; set; }
public int SortOrder { get; set; }
public string OptName { get; set; }
public DateTime OptDate { get; set; }
public string UpdateOptName { get; set; }
public DateTime UpdateDate { get; set; }
public int ReferenceCount { get; set; }
}
}