using System;
|
using System.Text;
|
using System.Collections.Generic;
|
using System.Data;
|
using HH.WMS.Entitys.Common;
|
|
namespace HH.WMS.Entitys
|
{
|
[Table("TN_WM_B_VIEWCONFIG")]
|
public class TN_WM_B_VIEWCONFIGEntity : BaseEntity
|
{
|
|
[Column("CN_S_AREA_CODE")]
|
public string CN_S_AREA_CODE { get; set; }
|
|
|
[Column("CN_S_LOGIC_AREA_CODE")]
|
public string CN_S_LOGIC_AREA_CODE { get; set; }
|
|
|
[Column("CN_S_PAGE_NAME")]
|
public string CN_S_PAGE_NAME { get; set; }
|
|
|
[Column("CN_N_LOCATION_X")]
|
public int? CN_N_LOCATION_X { get; set; }
|
|
|
[Column("CN_N_LOCATION_Y")]
|
public int? CN_N_LOCATION_Y { get; set; }
|
|
|
[Column("CN_N_SIZE_X")]
|
public int? CN_N_SIZE_X { get; set; }
|
|
|
[Column("CN_N_SIZE_Y")]
|
public int? CN_N_SIZE_Y { get; set; }
|
|
|
[Column("CN_S_BACKGROUND")]
|
public string CN_S_BACKGROUND { get; set; }
|
|
|
[Column("CN_N_TITLE_SIZE")]
|
public int? CN_N_TITLE_SIZE { get; set; }
|
|
|
[Column("CN_S_FLOOR")]
|
public string CN_S_FLOOR { get; set; }
|
|
|
[Column("CN_S_DIRECTION")]
|
public string CN_S_DIRECTION { get; set; }
|
|
|
[Column("CN_S_VIEWNAME")]
|
public string CN_S_VIEWNAME { get; set; }
|
|
[Column("CN_S_ROW_SORT")]
|
public string CN_S_ROW_SORT { get; set; }
|
|
[Column("CN_S_COL_SORT")]
|
public string CN_S_COL_SORT { get; set; }
|
|
[Column("CN_N_COL_WIDTH")]
|
public int? CN_N_COL_WIDTH { get; set; }
|
|
[Column("CN_N_COL_HEIGHT")]
|
public int? CN_N_COL_HEIGHT { get; set; }
|
}
|
}
|