using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
using SOA.Persistent;
namespace IBKLinker_Minio.Entity.MinioController
{
///
///minio权限表
///
[Serializable, Table("MINIO_AUTHORITY"), JsonObject]
public class MinioAuthority
{
///
///唯一标识
///
[Persistent("ID", IsKey = true), DisplayName("唯一标识")]
public int Id { get; set; }
///
///权限ID
///
[Persistent("LIMITS_AUTHORITY_ID"), DisplayName("权限ID")]
public string LimitsAuthorityId { get; set; }
///
///文件表ID
///
[Persistent("FILE_ID"), DisplayName("文件表ID")]
public int FileId { get; set; }
///
///创建人
///
[Persistent("CREATOR_USER"), DisplayName("创建人")]
public string CreatorUser { get; set; }
///
///创建时间
///
[Persistent("CREATOR_TIME"), DisplayName("创建时间")]
public DateTime? CreatorTime { get; set; }
///
///备用字段
///
[Persistent("ALTERNATE_FIELDS"), DisplayName("备用字段")]
public string AlternateFields { get; set; }
}
}