47 lines
1.2 KiB
C#
47 lines
1.2 KiB
C#
using FreeSql.DataAnnotations;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FATrace.Model
|
|
{
|
|
/// <summary>
|
|
/// 称重用户登录
|
|
/// </summary>
|
|
[Table(Name = "dbo.TbWeightUser")]
|
|
public class TbWeightUser
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[Column(IsPrimary = true, IsIdentity = true)]
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 确认者
|
|
/// </summary>
|
|
[Column(Name = "CheckName", IsNullable = false, StringLength = 20)]
|
|
public string CheckName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 操作者
|
|
/// </summary>
|
|
[Column(Name = "OpName", IsNullable = false, StringLength = 20)]
|
|
public string OpName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 密码
|
|
/// </summary>
|
|
[Column(Name = "Password", IsNullable = false, StringLength = 20)]
|
|
public string Password { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[Column(ServerTime = DateTimeKind.Local, CanUpdate = false)]
|
|
public DateTime CreateTime { get; set; }
|
|
}
|
|
}
|