This commit is contained in:
2025-10-29 11:42:58 +08:00
parent 7f6f84cd0e
commit a178c3550e
190 changed files with 81361 additions and 92 deletions

46
FATrace.Model/DayCount.cs Normal file
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 = "DayCount")]
public class DayCount
{
/// <summary>
/// 主键
/// </summary>
[Column(IsPrimary = true, IsIdentity = true)]
public long Id { get; set; }
///// <summary>
///// 内袋二维码
///// </summary>
//[Column(Name = "InBagCode", IsNullable = false, StringLength = 100)]
//public string? InBagCode { get; set; }
/// <summary>
/// 当前的产量
/// </summary>
[Column(Name = "Count")]
public int Count { get; set; }
/// <summary>
/// 日期
/// </summary>
[Column(Name = "DayInfo", IsNullable = false, StringLength = 20)]
public string? DayInfo { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[Column(ServerTime = DateTimeKind.Local, CanUpdate = true)]
public DateTime UpdateTime { get; set; }
}
}