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.

61 lines
1.4 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("g_ship_detail")]
[Serializable]
public class GShipDetail : BaseEntity
{
[Column("ruid")]
[DisplayName(" ")]
public int Ruid { get; set; }
[Column("seq")]
[DisplayName(" ")]
public int? Seq { get; set; }
[Column("roll_no")]
[DisplayName(" ")]
public string RollNo { get; set; }
[Column("roll_type")]
[DisplayName(" ")]
public string RollType { get; set; }
[Column("model_no")]
[DisplayName(" ")]
public string ModelNo { get; set; }
[Column("part_no")]
[DisplayName(" ")]
public string PartNo { get; set; }
[Column("part_location")]
[DisplayName(" ")]
public string PartLocation { get; set; }
[Column("tray_no")]
[DisplayName(" ")]
public string TrayNo { get; set; }
[Column("shipping_sn")]
[DisplayName(" ")]
public string ShippingSn { get; set; }
[Column("status")]
[DisplayName(" ")]
public int Status { get; set; }
[Column("shipment_status")]
[DisplayName(" ")]
public int? ShipmentStatus { get; set; }
}
}