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.
81 lines
1.9 KiB
C#
81 lines
1.9 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("g_ht_move_trans")]
|
|
[Serializable]
|
|
public class GHtMoveTrans : BaseEntity
|
|
{
|
|
[Column("order_no")]
|
|
[DisplayName(" ")]
|
|
public string OrderNo { get; set; }
|
|
|
|
[Column("car_no")]
|
|
[DisplayName(" ")]
|
|
public string CarNo { get; set; }
|
|
|
|
[Column("serial_number")]
|
|
[DisplayName(" ")]
|
|
public string SerialNumber { get; set; }
|
|
|
|
[Column("part_no")]
|
|
[DisplayName(" ")]
|
|
public string PartNo { get; set; }
|
|
|
|
[Column("item_part_no")]
|
|
[DisplayName(" ")]
|
|
public string ItemPartNo { get; set; }
|
|
|
|
[Column("lot_no")]
|
|
[DisplayName(" ")]
|
|
public string LotNo { get; set; }
|
|
|
|
[Column("qty")]
|
|
[DisplayName(" ")]
|
|
public decimal Qty { get; set; }
|
|
|
|
[Column("bom_version")]
|
|
[DisplayName(" ")]
|
|
public string BomVersion { get; set; }
|
|
|
|
[Column("item_part_version")]
|
|
[DisplayName(" ")]
|
|
public string ItemPartVersion { get; set; }
|
|
|
|
[Column("pdline_name")]
|
|
[DisplayName(" ")]
|
|
public string PdlineName { get; set; }
|
|
|
|
[Column("trans_type")]
|
|
[DisplayName(" ")]
|
|
public string TransType { get; set; }
|
|
|
|
[Column("wo_detail_id")]
|
|
[DisplayName(" ")]
|
|
public int? WoDetailId { get; set; }
|
|
|
|
[Column("prod_type")]
|
|
[DisplayName(" ")]
|
|
public string ProdType { get; set; }
|
|
|
|
[Column("carton_no")]
|
|
[DisplayName(" ")]
|
|
public string CartonNo { get; set; }
|
|
|
|
[Column("trans_status")]
|
|
[DisplayName(" ")]
|
|
public string TransStatus { get; set; }
|
|
|
|
[Column("ruid")]
|
|
[DisplayName(" ")]
|
|
public int? Ruid { get; set; }
|
|
|
|
|
|
}
|
|
}
|