48 lines
1.1 KiB
C#
48 lines
1.1 KiB
C#
using SqlSugar;
|
|||
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace JinYuan.Models
|
||
|
|
{
|
||
|
|
public class ParamList
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
///
|
||
|
|
/// </summary>
|
||
|
|
[SugarColumn(IsPrimaryKey = true)]
|
||
|
|
public System.String ModelName { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
///
|
||
|
|
/// </summary>
|
||
|
|
[SugarColumn(IsPrimaryKey = true)]
|
||
|
|
public System.String ParaName { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
///
|
||
|
|
/// </summary>
|
||
|
|
public System.String ParaValueMin { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
///
|
||
|
|
/// </summary>
|
||
|
|
public System.String ParaValueMax { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
///
|
||
|
|
/// </summary>
|
||
|
|
public System.String Uint { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
///
|
||
|
|
/// </summary>
|
||
|
|
public System.String Remark { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
///
|
||
|
|
/// </summary>
|
||
|
|
public System.DateTime? UpdateTime { get; set; } = System.DateTime.Now;
|
||
|
|
}
|
||
|
|
}
|