32 lines
800 B
C#
32 lines
800 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenAuth.Repository.Domain
|
|
{
|
|
/// <summary>
|
|
/// 变化检测
|
|
/// </summary>
|
|
[SugarTable("lasa_changedetection")]
|
|
public class Lasa_ChangeDetection
|
|
{
|
|
[SugarColumn(ColumnName = "Id", IsPrimaryKey = true)]
|
|
public string Id { get; set; }
|
|
|
|
public string Title { get; set; }
|
|
|
|
public string FirstId { get; set; }
|
|
|
|
public string FirstName { get; set; }
|
|
|
|
public string SecondId { get; set; }
|
|
public string SecondName { get; set; }
|
|
public DateTime? CreateTime { get; set; }
|
|
public long CreateId { get; set; }
|
|
public string AiAchievementId { get; set; }
|
|
}
|
|
}
|