You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.4 KiB
C#
57 lines
1.4 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("sys_locate_temp")]
|
|
[Serializable]
|
|
public class SysLocateTemp : BaseEntity
|
|
{
|
|
[Column("warehouse_id")]
|
|
[DisplayName(" ")]
|
|
public int WarehouseId { get; set; }
|
|
|
|
[Column("locate_id")]
|
|
[DisplayName(" ")]
|
|
public int LocateId { get; set; }
|
|
|
|
[Column("locate_name")]
|
|
[DisplayName(" ")]
|
|
public string LocateName { get; set; }
|
|
|
|
[Column("locate_desc")]
|
|
[DisplayName(" ")]
|
|
public string LocateDesc { get; set; }
|
|
|
|
[Column("locate_type")]
|
|
[DisplayName(" ")]
|
|
public string LocateType { get; set; }
|
|
|
|
[Column("part_id")]
|
|
[DisplayName(" ")]
|
|
public int? PartId { get; set; }
|
|
|
|
[Column("locate_capacity")]
|
|
[DisplayName(" ")]
|
|
public decimal? LocateCapacity { get; set; }
|
|
|
|
[Column("locate_size")]
|
|
[DisplayName(" ")]
|
|
public string LocateSize { get; set; }
|
|
|
|
[Column("locate_empty")]
|
|
[DisplayName(" ")]
|
|
public string LocateEmpty { get; set; }
|
|
|
|
[Column("locate_distance")]
|
|
[DisplayName(" ")]
|
|
public decimal? LocateDistance { get; set; }
|
|
|
|
|
|
}
|
|
}
|