23 lines
489 B
C#
23 lines
489 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CeramicProjectTool.Model
|
|
{
|
|
[SugarTable("nr_z_yhjs")]
|
|
public class RuleModel
|
|
{
|
|
/*
|
|
id,
|
|
mingcheng
|
|
*/
|
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
|
|
public int Id { get; set; }
|
|
[SugarColumn(ColumnName = "mingcheng")]
|
|
public string RuleName { get; set; }
|
|
}
|
|
}
|