SqlSugar/Src/Asp.Net/SqlServerTest/Models/DiffLong.cs

16 lines
309 B
C#
Raw Normal View History

2022-05-03 15:36:55 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest
{
public class DiffLong
{
[SqlSugar.SugarColumn(IsPrimaryKey =true)]
public long Id { get; set; }
public string Name { get; set; }
}
}