You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
570 B
C#
26 lines
570 B
C#
using Microsoft.SqlServer.Server;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SLH.SSDMS.Model.DO
|
|
{
|
|
[SugarTable("sys_config")]
|
|
public class Sys_Config
|
|
{
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|
public int config_id { get; set; }
|
|
|
|
public string config_name { get; set; }
|
|
|
|
public string config_key { get; set; }
|
|
|
|
public string config_value { get; set; }
|
|
|
|
public string remark { get; set; }
|
|
}
|
|
}
|