You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.5 KiB
C#
67 lines
1.5 KiB
C#
1 year ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using SOA.Persistent;
|
||
|
|
||
|
namespace IBKLinker_Minio.Entity.MinioController
|
||
|
{
|
||
|
/// <summary>
|
||
|
///minio用户表
|
||
|
/// </summary>
|
||
|
[Serializable, Table("MINIO_USER")]
|
||
|
public class MinioUser
|
||
|
{
|
||
|
/// <summary>
|
||
|
///用户ID
|
||
|
/// </summary>
|
||
|
[Persistent("USER_ID", IsKey = true), DisplayName("用户ID")]
|
||
|
public int UserId { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
///用户姓名
|
||
|
/// </summary>
|
||
|
[Persistent("USER_NAME"), DisplayName("用户姓名")]
|
||
|
public string UserName { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
///角色ID
|
||
|
/// </summary>
|
||
|
[Persistent("ROLE_ID"), DisplayName("角色ID")]
|
||
|
public int RoleId { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
///创建人
|
||
|
/// </summary>
|
||
|
[Persistent("CREATOR_USER"), DisplayName("创建人")]
|
||
|
public string CreatorUser { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
///状态
|
||
|
/// </summary>
|
||
|
[Persistent("STATE"), DisplayName("状态")]
|
||
|
public int State { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
///备用字段
|
||
|
/// </summary>
|
||
|
[Persistent("ALTERNATE_FIELDS"), DisplayName("备用字段")]
|
||
|
public string AlternateFields { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
///创建时间
|
||
|
/// </summary>
|
||
|
[Persistent("CREATOR_TIME"), DisplayName("创建时间")]
|
||
|
public DateTime? CreatorTime { get; set; }
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|