You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.1 KiB
35 lines
1.1 KiB
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Mirle.Component.Database.Model.Warroom.Config
|
|
{
|
|
/// <summary>
|
|
/// 功能基本資料類別
|
|
/// </summary>
|
|
[Table("cfg_func")]
|
|
public class CfgFuncDto : CommonDto
|
|
{
|
|
/// <summary>
|
|
/// 功能識別碼
|
|
/// </summary>
|
|
[Column(Name = "func_uid"), JsonPropertyName("func_id")]
|
|
[Required, Key]
|
|
public int FunctionUID { get; set; }
|
|
/// <summary>
|
|
/// 功能名稱
|
|
/// </summary>
|
|
[Column(Name = "func_name"), JsonPropertyName("func_name")]
|
|
public string FunctionName { get; set; }
|
|
/// <summary>
|
|
/// 功能網址
|
|
/// </summary>
|
|
[Column(Name = "func_url"), JsonPropertyName("func_url")]
|
|
public string FunctionURL { get; set; }
|
|
/// <summary>
|
|
/// 功能父類別編號
|
|
/// </summary>
|
|
[Column(Name = "parent_func_id"), JsonPropertyName("parent_func_id")]
|
|
public int ParentFunctionID { get; set; }
|
|
}
|
|
}
|