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.

40 lines
977 B
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("sys_cust_pdline")]
[Serializable]
public class SysCustPdline : BaseEntity
{
[Column("customer_id")]
[DisplayName(" ")]
public int CustomerId { get; set; }
[Column("cust_pdline_id")]
[DisplayName(" ")]
public int CustPdlineId { get; set; }
[Column("cust_pdline_code")]
[DisplayName(" ")]
public string CustPdlineCode { get; set; }
[Column("cust_pdline_name")]
[DisplayName(" ")]
public string CustPdlineName { get; set; }
[Column("cust_pdline_desc")]
[DisplayName(" ")]
public string CustPdlineDesc { get; set; }
[Column("tray_type_id")]
[DisplayName(" ")]
public int? TrayTypeId { get; set; }
}
}