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#
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_pack_spec")]
|
|
[Serializable]
|
|
public class SysPackSpec : BaseEntity
|
|
{
|
|
[Column("spec_id")]
|
|
[DisplayName(" ")]
|
|
public int SpecId { get; set; }
|
|
|
|
[Column("spec_name")]
|
|
[DisplayName("包规名称")]
|
|
public string SpecName { get; set; }
|
|
|
|
[Column("pallet_qty")]
|
|
[DisplayName("每栈板的数量")]
|
|
public int PalletQty { get; set; }
|
|
|
|
[Column("carton_qty")]
|
|
[DisplayName("每箱的数量")]
|
|
public int CartonQty { get; set; }
|
|
|
|
[Column("box_qty")]
|
|
[DisplayName("每盒的数量")]
|
|
public int BoxQty { get; set; }
|
|
|
|
#region 扩展字段
|
|
[NotMapped]
|
|
[Column("Total")]
|
|
[DisplayName("")]
|
|
public int Total { get; set; }
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|