using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace Sugar.Enties
{
///
///
///
[SugarTable("warehouse")]
public partial class warehouse
{
public warehouse(){
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true)]
public string cWhCode {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public string cWhName {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public string cDepCode {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public string cWhAddress {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public string cWhPhone {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public string cWhPerson {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public string cWhMemo {get;set;}
}
}