SqlSugar/Src/Asp.NetCore2/TDSQLForPGOBDCTest/TSYS_USER.cs
2024-09-20 15:52:10 +08:00

59 lines
1.3 KiB
C#

using SqlSugar;
using System;
namespace TDSQLForPGOBDCTest
{
///<summary>
/// XIR用户表
///</summary>
[SugarTable("TSYS_USER")]
public partial class TSYS_USER
{
public TSYS_USER()
{
}
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsNullable = false, IsPrimaryKey = true, Length = 30)]
public string U_ID { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(IsNullable = true, Length = 50)]
public string U_NAME { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(IsNullable = true, Length = 1)]
public string U_STATE { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(IsNullable = true, Length = 2000)]
public string U_REMARK { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(IsNullable = true, Length = 100)]
public string U_EMAIL { get; set; }
}
}