部分实体

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

@@ -0,0 +1,52 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
using WMS.Web.Core;
namespace WMS.Web.Domain.Entitys
{
/// <summary>
/// wms盘点单
/// </summary>
[Serializable]
[Table("t_wms_takestock")]
public class TakeStock : EntityBase
{
public TakeStock() { }
/// <summary>
/// 主键 订单编号
/// </summary>
[Column("Id")]
public override int Id { get; set; }
/// <summary>
/// 单据编号
/// </summary>
[Column("BillNo")]
public string BillNo { get; set; }
/// <summary>
/// 盘点日期
/// </summary>
[Column("Date")]
public DateTime Date { get; set; }
/// <summary>
/// 盘点人员
/// </summary>
[Column("CreatorId")]
public int CreatorId { get; set; }
/// <summary>
/// 公司ID
/// </summary>
[Column("CompanyId")]
public int CompanyId { get; set; }
/// <summary>
/// 同步成功或者失败 null 就是未同步
/// </summary>
[Column("SuccessSync")]
public bool? SuccessSync { get; set; }
/// <summary>
/// 明细
/// </summary>
public List<TakeStockDetails> Details = new List<TakeStockDetails>();
}
}