实体对象
This commit is contained in:
39
src/WMS.Web.Domain/Entitys/InventoryInOutDetails.cs
Normal file
39
src/WMS.Web.Domain/Entitys/InventoryInOutDetails.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
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_inventory_inout_details")]
|
||||
public class InventoryInOutDetails
|
||||
{
|
||||
/// <summary>
|
||||
/// ID
|
||||
/// </summary>
|
||||
public int Id { get; set; }
|
||||
/// <summary>
|
||||
/// 物料ID
|
||||
/// </summary>
|
||||
public int MaterialId { get; set; }
|
||||
/// <summary>
|
||||
/// 类型:1为入库,2为出库
|
||||
/// </summary>
|
||||
public InventoryInOutType Type { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 仓库ID
|
||||
/// </summary>
|
||||
public int StockId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 单据类型
|
||||
/// </summary>
|
||||
public int OrderType { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user