30 lines
732 B
C#
30 lines
732 B
C#
using FreeSql.DataAnnotations;
|
|
|
|
namespace FATrace.Model
|
|
{
|
|
/// <summary>
|
|
/// 产线临时条码数据
|
|
/// </summary>
|
|
[Table(Name = "LineTempCode")]
|
|
public class LineTempCode
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[Column(IsPrimary = true, IsIdentity = true)]
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 编号
|
|
/// </summary>
|
|
[Column(Name = "Code", IsNullable = false, StringLength = 100)]
|
|
public string? Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[Column(ServerTime = DateTimeKind.Local, CanUpdate = true)]
|
|
public DateTime CreateTime { get; set; }
|
|
}
|
|
}
|