using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace EC_SeckillInfo
{
///
///纸张尺寸表
///
[SugarTable("SysInquiry_PaperSize")]
public partial class SysInquiry_PaperSize
{
public SysInquiry_PaperSize(){
}
///
/// Desc:编号
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true)]
public int KeyId {get;set;}
///
/// Desc:名称
/// Default:
/// Nullable:False
///
public string SizeName {get;set;}
///
/// Desc:开数值
/// Default:
/// Nullable:True
///
public int? SizeValue {get;set;}
///
/// Desc:宽
/// Default:
/// Nullable:True
///
public int? SizeWith {get;set;}
///
/// Desc:高
/// Default:
/// Nullable:True
///
public int? SizeHight {get;set;}
///
/// Desc:尺寸类别编号
/// Default:
/// Nullable:True
///
public int? SizeType {get;set;}
///
/// Desc:有效状态
/// Default:
/// Nullable:False
///
public bool Status {get;set;}
}
}