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

21 lines
451 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-31 23:51:07 +08:00
public long Sid { get; set; }
2022-07-30 22:18:26 +08:00
2022-07-31 23:51:07 +08:00
public DateTime createtime { get; set; }
2022-07-30 22:18:26 +08:00
public string username { get; set; }
public string password { get; set; }
}
}