初版的功能
This commit is contained in:
29
FATrace.Model/LineTempCode.cs
Normal file
29
FATrace.Model/LineTempCode.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
@@ -81,6 +81,12 @@ namespace FATrace.Model
|
||||
[Column(Name = "WeightTime")]
|
||||
public DateTime WeightTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 称重扫码时间
|
||||
/// </summary>
|
||||
[Column(Name = "WeightScanTime")]
|
||||
public DateTime WeightScanTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 操作者
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user