using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace Sugar.Enties
{
///
///
///
[SugarTable("itemdictionary")]
public partial class itemdictionary
{
public itemdictionary(){
}
///
/// Desc:
/// Default:
/// Nullable:False
///
public string ItemType {get;set;}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true)]
public string ItemID {get;set;}
///
/// Desc:
/// Default:
/// Nullable:False
///
public string ItemName {get;set;}
///
/// Desc:
/// Default:
/// Nullable:False
///
public byte ItemClass {get;set;}
///
/// Desc:
/// Default:
/// Nullable:False
///
public byte Flag {get;set;}
///
/// Desc:
/// Default:
/// Nullable:False
///
public int OrderCode {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public string SearchCode {get;set;}
///
/// Desc:
/// Default:
/// Nullable:False
///
public byte IsValid {get;set;}
}
}