SqlSugar源码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
390 B

using System;
using System.Collections.Generic;
using System.Text;
using SqlSugar;
namespace SqlSugarDemo
{
[SugarTable("user_name_simple")]
public class user_name_simple
{
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int id { set; get; }
public string name { set; get; }
public DateTime create_time { set; get; }
}
}