using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JinYuan.Models { /// /// /// public class ParamBase { /// /// /// public ParamBase() { } /// /// 序号 /// public System.Int32? fNo { get; set; } /// /// 参数名称 /// [SugarColumn(IsPrimaryKey = true)] public System.String ParaName { get; set; } /// /// 备注 /// public System.String Remark { get; set; } } }