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

16 lines
265 B
C#
Raw Normal View History

2022-08-12 20:56:36 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest
{
public class Custom
{
2022-08-13 16:03:42 +08:00
public long Id { get; set; }
2022-08-12 20:56:36 +08:00
public string Name { get; set; }
}
}