Base_Loction.cs
767 Bytes
using RCS.Model.Entity.PrimaryKey;
using System.ComponentModel.DataAnnotations.Schema;
namespace RCS.Model.Entity
{
/// <summary>
/// 库位地标
/// </summary>
[Table("t_base_loction")]
public class Base_Loction : IdEntity
{
/// <summary>
/// 库位条码
/// </summary>
public string LoctionBarcode { get; set; }
/// <summary>
/// 库位编码
/// </summary>
public string LoctionCode { get; set; }
/// <summary>
/// 库位名称
/// </summary>
public string LoctionName { get; set; }
/// <summary>
/// 库位地标
/// </summary>
[NotMapped]
public Base_Point LoctionPoint { get; set; }
}
}