统一命名规范

This commit is contained in:
tongfei
2023-10-26 15:23:37 +08:00
parent e8bd8db0dc
commit 9867447523
4 changed files with 23 additions and 23 deletions

View File

@@ -0,0 +1,47 @@
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_instock")]
public class InStock
{
/// <summary>
/// ID
/// </summary>
public int Id { get; set; }
/// <summary>
/// 单据编号
/// </summary>
public string BillNo { get; set; }
/// <summary>
/// 入库类型
/// </summary>
public InstockType Type { get; set; }
/// <summary>
/// 创建人
/// </summary>
public int CreatorId { get; set; }
/// <summary>
/// 创建时间(入库时间)
/// </summary>
public DateTime CreateTime { get; set; }
/// <summary>
/// 同步成功或者失败
/// </summary>
public bool SuccessSync { get; set; }
/// <summary>
/// 明细
/// </summary>
[NotMapped]
public List<InStockDetails> Details = new List<InStockDetails>();
}
}