部分实体

This commit is contained in:
18942506660
2023-10-26 11:54:35 +08:00
parent dcd7a7567c
commit 9c890c219d
12 changed files with 491 additions and 3 deletions

View File

@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
using WMS.Web.Core;
using WMS.Web.Domain.Values;
namespace WMS.Web.Domain.Entitys
{
@@ -28,12 +29,12 @@ namespace WMS.Web.Domain.Entitys
/// 单据状态
/// </summary>
[Column("Status")]
public int Status { get; set; }
public OutStockStatus Status { get; set; } = OutStockStatus.Wait;
/// <summary>
/// 单据类型
/// </summary>
[Column("Type")]
public int Type { get; set; }
public OutStockType Type { get; set; } = OutStockType.Sal;
/// <summary>
/// 操作人(出库人)
/// </summary>