SqlSugar/Src/Asp.Net/SqlServerTest/UnitTest/Models/user_name_simple.cs

20 lines
390 B
C#
Raw Normal View History

2022-08-04 11:57:16 +08:00
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; }
}
}