namespace SHJX.Service.Model.CRUDModules
{
[Table("pid")]
public class PID
{
///
/// 主键自增列
///
[Key]
[IgnoreColumn]
[ReadOnlyColumn]
[ColumnWidth("1*")]
[DisplayName("编号")]
public int SerialKey { get; set; }
[IgnoreColumn]
public string TypeName { get; set; }
///
/// 描述
///
[ReadOnlyColumn]
[ColumnWidth("1*")]
[DisplayName("类型")]
public string Description { get; set; }
///
/// 比例
///
[ColumnWidth("1*")]
[DisplayName("比例")]
public double Ratio { get; set; }
///
/// 积分
///
[ColumnWidth("1*")]
[DisplayName("积分")]
public int Integral { get; set; }
///
/// 微分
///
[ColumnWidth("1*")]
[DisplayName("微分")]
public int Differential { get; set; }
///
/// 积分默认值
///
[ColumnWidth("1*")]
[DisplayName("积分默认值")]
public double IntegralDeafult { get; set; }
}
}