SqlSugar/Src/Asp.NetCore2/QuestDbTest/Models/users.cs

24 lines
538 B
C#
Raw Normal View History

2022-07-30 22:18:26 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
namespace OrmTest
{
[SqlSugar.SugarTable("users")]
public class Users
{
[SugarColumn(IsPrimaryKey = true)]
2022-07-30 22:56:31 +08:00
public long Sid { get; set; }
2022-07-30 22:18:26 +08:00
public int Id { get; set; }
[SqlSugar.SugarColumn(IsNullable = true)]
public DateTime? createtime { get; set; }
public string username { get; set; }
public string password { get; set; }
}
}