实体对象创建

This commit is contained in:
tongfei
2023-10-26 09:58:15 +08:00
parent c8fca23519
commit cdb0cdefb0
6 changed files with 321 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
using WMS.Web.Domain.Values;
namespace WMS.Web.Domain.Entitys
{
/// <summary>
/// wms出入库回退记录表
/// </summary>
[Serializable]
[Table("t_wms_back_record")]
public class BackRecord
{
/// <summary>
/// ID
/// </summary>
public int Id { get; set; }
/// <summary>
/// 所属箱号ID
/// </summary>
public int BoxId { get; set; }
/// <summary>
/// 类型1为入库回退下架2为出库回退上架
/// </summary>
public BackRecordType Type { get; set; }
/// <summary>
/// 操作人
/// </summary>
public int CreatorId { get; set; }
/// <summary>
/// 操作时间
/// </summary>
public DateTime CreateTime { get; set; }
}
}