添加项目文件。

This commit is contained in:
2025-04-30 17:01:05 +08:00
commit 1eaedea85d
261 changed files with 33985 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
using BarCode.Web.Core;
namespace BarCode.Web.Domain.Entitys
{
/// <summary>
/// 老ops箱信息明细
/// alter table t_barcode_box_details AUTO_INCREMENT=50000;
/// </summary>
[Serializable]
[Table("t_barcode_box_details")]
public class BoxDetails : EntityBase
{
/// <summary>
/// ID
/// </summary>
[Column("Id")]
public override int Id { get; set; }
/// <summary>
/// 单据头ID
/// </summary>
[Column("Fid")]
public int Fid { get; set; }
/// <summary>
/// 物料编码
/// </summary>
[Column("MaterialNumber")]
public string MaterialNumber { get; set; } = "";
/// <summary>
/// 数量(装箱数量)
/// </summary>
[Column("Qty")]
public decimal Qty { get; set; } = 0;
/// <summary>
/// 序列号
/// </summary>
[Column("SerialNumbers")]
public List<string> SerialNumbers { get; set; } = new List<string>();
}
}