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.

54 lines
1.3 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("sys_pdline_zone")]
[Serializable]
public class SysPdlineZone : BaseEntity
{
[Column("ruid")]
[DisplayName(" ")]
public int Ruid { get; set; }
[Column("pdline_id")]
[DisplayName(" ")]
public int PdlineId { get; set; }
[Column("pdline_code")]
[DisplayName(" ")]
public string PdlineCode { get; set; }
[Column("warehouse_id")]
[DisplayName(" ")]
public int WarehouseId { get; set; }
[Column("warehouse_name")]
[DisplayName(" ")]
public string WarehouseName { get; set; }
[Column("zone_id")]
[DisplayName(" ")]
public int ZoneId { get; set; }
[Column("zone_name")]
[DisplayName(" ")]
public string ZoneName { get; set; }
[Column("busi_type")]
[DisplayName(" ")]
public int BusiType { get; set; }
#region 扩展字段
[NotMapped]
[Column("erp_warehouse")]
[DisplayName(" ")]
public string ErpWarehouse { get; set; }
#endregion
}
}