LASAPlatform/OpenAuth.Repository/Domain/Lasa_ChangeDetection.cs

33 lines
843 B
C#
Raw Normal View History

2025-09-10 09:51:00 +08:00
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; }
2025-09-12 09:47:42 +08:00
public bool IsFinish { get; set; }
2025-09-10 09:51:00 +08:00
}
}