mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-24 04:53:45 +08:00
.Net framework support QuestDb
This commit is contained in:
20
Src/Asp.Net/QuestDbTest/Models/users.cs
Normal file
20
Src/Asp.Net/QuestDbTest/Models/users.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
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)]
|
||||
public long Sid { get; set; }
|
||||
|
||||
public DateTime createtime { get; set; }
|
||||
public string username { get; set; }
|
||||
|
||||
public string password { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user