部分实体
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user