入库单实体

This commit is contained in:
tongfei
2023-10-25 16:49:36 +08:00
parent 22213af18f
commit 92f612223f
4 changed files with 102 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace WMS.Web.Domain.Entitys
{
/// <summary>
/// wms入库单
/// </summary>
[Serializable]
[Table("t_wms_instock")]
public class InstockOrder
{
/// <summary>
/// ID
/// </summary>
public int Id { get; set; }
}
}