2024-08-21 16:50:14 +08:00

18 lines
571 B
C#

using System;
using System.Collections.Generic;
namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
{
public partial class ImLinkage
{
public string LnkId { get; set; } = null!;
public string SrcObjId { get; set; } = null!;
public string SrcObjType { get; set; } = null!;
public string LnkType { get; set; } = null!;
public string Resource { get; set; } = null!;
public string? Action { get; set; }
public string? ActParam { get; set; }
public string State { get; set; } = null!;
}
}