Update diff log bug

This commit is contained in:
sunkaixuan
2022-05-03 15:36:55 +08:00
parent 01950b556c
commit 6378850d80
4 changed files with 23 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
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; }
}
}