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

16 lines
294 B
C#
Raw Normal View History

2022-07-29 22:44:21 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest
{
2022-07-31 23:51:07 +08:00
[SqlSugar.SugarTable("Custom_1")]
2022-07-29 22:44:21 +08:00
public class Custom
{
2022-07-31 23:51:07 +08:00
public long Id { get; set; }
2022-07-29 22:44:21 +08:00
public string Name { get; set; }
}
}