初期稳定版本260119

This commit is contained in:
2026-01-19 12:40:45 +08:00
parent 82d0bd6b95
commit f65fa21760
32 changed files with 2494 additions and 138 deletions

View File

@@ -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; }

View File

@@ -29,6 +29,11 @@ namespace FATrace.Model
/// </summary>
public string? Origin { get; set; }
/// <summary>
/// 批号
/// </summary>
public string? Batch { get; set; }
/// <summary>
/// 原料代码
/// </summary>

View File

@@ -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>

View 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; }
}
}