mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-24 18:04:52 +08:00
20 lines
391 B
C#
20 lines
391 B
C#
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; }
|
|
}
|
|
|
|
|
|
}
|