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.
77 lines
1.8 KiB
C#
77 lines
1.8 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("g_roll_stock")]
|
|
[Serializable]
|
|
public class GRollStock : BaseEntity
|
|
{
|
|
[Column("ruid")]
|
|
[DisplayName(" ")]
|
|
public int Ruid { get; set; }
|
|
|
|
[Column("factory_id")]
|
|
[DisplayName(" ")]
|
|
public int? FactoryId { get; set; }
|
|
|
|
[Column("roll_no")]
|
|
[DisplayName(" ")]
|
|
public int? RollNo { get; set; }
|
|
|
|
[Column("location")]
|
|
[DisplayName("托盘在发运通道中的排序位置")]
|
|
public int? Location { get; set; }
|
|
|
|
[Column("cust_pdline_id")]
|
|
[DisplayName(" ")]
|
|
public int? CustPdlineId { get; set; }
|
|
|
|
[Column("tray_no")]
|
|
[DisplayName(" ")]
|
|
public string TrayNo { get; set; }
|
|
|
|
[Column("tray_type")]
|
|
[DisplayName(" ")]
|
|
public string TrayType { get; set; }
|
|
|
|
[Column("tray_index")]
|
|
[DisplayName(" ")]
|
|
public string TrayIndex { get; set; }
|
|
|
|
[Column("serial_number")]
|
|
[DisplayName(" ")]
|
|
public string SerialNumber { get; set; }
|
|
|
|
[Column("in_stock_time")]
|
|
[DisplayName(" ")]
|
|
public DateTime? InStockTime { get; set; }
|
|
|
|
[Column("out_stock_time")]
|
|
[DisplayName(" ")]
|
|
public DateTime? OutStockTime { get; set; }
|
|
|
|
[Column("qty")]
|
|
[DisplayName(" ")]
|
|
public int? Qty { get; set; }
|
|
|
|
[Column("status")]
|
|
[DisplayName(" ")]
|
|
public int? Status { get; set; }
|
|
|
|
[Column("model_id")]
|
|
[DisplayName(" ")]
|
|
public string ModelId { get; set; }
|
|
|
|
[Column("vin")]
|
|
[DisplayName(" ")]
|
|
public string Vin { get; set; }
|
|
|
|
|
|
}
|
|
}
|