添加项目文件。

This commit is contained in:
2026-03-16 10:36:47 +08:00
parent aa2e0d4a45
commit 54b11c9c84
309 changed files with 41803 additions and 0 deletions

View File

@@ -0,0 +1,53 @@
using FreeSql.DataAnnotations;
using System;
namespace GroupLine.Model
{
/// <summary>
/// 小P支架压入
/// </summary>
[Table(Name = "dbo.PRacktPress")]
[Index("IX_CreateTime", "CreateTime", false)]
[Index("IX_CylinderNo", "CylinderNo", false)]
[Index("IX_RacktNo", "RacktNo", false)]
public class PRacktPress
{
/// <summary>
/// Id
/// </summary>
[Column(IsIdentity = true)]
public long Id { get; set; }
/// <summary>
/// 筒体编号
/// </summary>
[Column(DbType = "nvarchar(20)")]
public string CylinderNo { get; set; }
/// <summary>
/// 支架编号
/// </summary>
[Column(DbType = "nvarchar(10)")]
public string RacktNo { get; set; }
/// <summary>
/// 压入压力
/// </summary>
[Column(DbType = "decimal(8, 2)")]
public decimal PressValue { get; set; }
/// <summary>
/// 托盘编号
/// </summary>
[Column(DbType = "nvarchar(10)")]
public string TrayNo { get; set; }
/// <summary>
/// 员工编号
/// </summary>
[Column(DbType = "nvarchar(6)")]
public string OpNo { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[Column(DbType = "datetime DEFAULT(GETDATE())")]
public DateTime CreateTime { get; set; }
}
}