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.

44 lines
1.0 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("sys_cust_pdline_prodinfo")]
[Serializable]
public class SysCustPdlineProdinfo : BaseEntity
{
[Column("cust_pdline_id")]
[DisplayName(" ")]
public int CustPdlineId { get; set; }
[Column("pdline_seq")]
[DisplayName(" ")]
public int PdlineSeq { get; set; }
[Column("cust_pdline_seq")]
[DisplayName(" ")]
public int CustPdlineSeq { get; set; }
[Column("pre_qty")]
[DisplayName(" ")]
public int PreQty { get; set; }
[Column("cycle_time")]
[DisplayName(" ")]
public int CycleTime { get; set; }
#region 扩展字段
[NotMapped]
[Column("cust_pdline_name")]
[DisplayName(" ")]
public string custPdlineName { get; set; }
#endregion
}
}