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.
33 lines
751 B
C#
33 lines
751 B
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("g_order_message_detail")]
|
|
[Serializable]
|
|
public class GOrderMessageDetail : BaseEntity
|
|
{
|
|
[Column("master_guid")]
|
|
[DisplayName("主表的 guid")]
|
|
public string MasterGuid { get; set; }
|
|
|
|
[Column("cust_seq")]
|
|
[DisplayName("客户号")]
|
|
public string CustSeq { get; set; }
|
|
|
|
[Column("part_no")]
|
|
[DisplayName("零件号")]
|
|
public string PartNo { get; set; }
|
|
|
|
[Column("ruid")]
|
|
[DisplayName(" ")]
|
|
public int Ruid { get; set; }
|
|
|
|
|
|
}
|
|
}
|