初期稳定版本260119
This commit is contained in:
@@ -20,7 +20,7 @@ namespace FATrace.Model
|
||||
public string? InTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 出库时间
|
||||
/// 领料时间
|
||||
/// </summary>
|
||||
public string? OutTime { get; set; }
|
||||
|
||||
@@ -45,7 +45,7 @@ namespace FATrace.Model
|
||||
public string? TotalInWeightKg { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 出库总重量 KG
|
||||
/// 领料总重量 KG
|
||||
/// </summary>
|
||||
public string? TotalOutWeightKg { get; set; }
|
||||
|
||||
|
||||
@@ -29,6 +29,11 @@ namespace FATrace.Model
|
||||
/// </summary>
|
||||
public string? Origin { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 批号
|
||||
/// </summary>
|
||||
public string? Batch { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 原料代码
|
||||
/// </summary>
|
||||
|
||||
@@ -22,7 +22,7 @@ namespace FATrace.Model
|
||||
///// <summary>
|
||||
///// 机器名称
|
||||
///// </summary>
|
||||
//[Column(Name = "MachineName", IsNullable = false, StringLength = 20)]
|
||||
//[Column(Name = "MachineName", IsNullable = true, StringLength = 20)]
|
||||
//public string MachineName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
|
||||
46
FATrace.Model/TbWeightUser.cs
Normal file
46
FATrace.Model/TbWeightUser.cs
Normal file
@@ -0,0 +1,46 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user