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

15 lines
255 B
C#
Raw Normal View History

2023-07-31 18:55:12 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest
{
public class Custom
{
public int Id { get; set; }
public string Name { get; set; }
}
}