using Core.Mes.Client.Comm.Attribute;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace Core.StlMes.Client.SaleBase.model
{
///
/// 数据库表SLM_BASE_ORDER_UNIT所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:DESKTOP-DG6B81Q 时间:2015-11-09
///
public class SlmBaseOrderUnitEntity
{
///
/// 客户编码
///
private string customerNo = "";
///
/// 销售组织(国贸/钢贸/销售公司)
///
private string saleOrg = "";
///
/// 用途类型(订货单位/结算单位/最终用户/收货单位)
///
private string custmUse = "";
///
/// 国内/国外(0国外;1国内)
///
private string chnFl = "";
///
/// 客户类别(终端客户、经销商)
///
private string custmCtgry = "";
///
/// 客户性质(一般用户、重点用户、大客户)
///
private string custmPrpty = "";
///
/// 客户等级
///
private string custmLvl = "";
///
/// 法人
///
private string legalPsn = "";
///
/// 委托代理人
///
private string agent = "";
///
/// 地址
///
private string address = "";
///
/// 行政片区
///
private string bigarea = "";
///
/// 省市/区域
///
private string regionNo = "";
///
/// 邮编
///
private string zipCode = "";
///
/// 开户银行
///
private string bank = "";
///
/// 帐号
///
private string account = "";
///
/// 税号
///
private string taxId = "";
///
/// 电话
///
private string phone = "";
///
/// 传真
///
private string fax = "";
///
/// 客户资质材料(文件路径的地址)
///
private string custmData = "";
///
/// 备注
///
private string memo = "";
///
/// 有效标志(1:有效,0:无效)
///
private string validflag = "";
///
/// 创建人
///
private string createName = "";
///
/// 创建时间
///
private string createTime = "";
///
/// 修改人
///
private string updateName = "";
///
/// 修改时间
///
private string updateTime = "";
///
/// 删除人
///
private string deleteName = "";
///
/// 删除时间
///
private string deleteTime = "";
///
/// 客户编码
///
[Description("客户编码")]
[Nullable(false)]
[DataLength(10)]
public string CustomerNo
{
get { return customerNo; }
set { customerNo = value; }
}
///
/// 销售组织(国贸/钢贸/销售公司)
///
[Description("销售组织")]
[Nullable(true)]
[DataLength(20)]
public string SaleOrg
{
get { return saleOrg; }
set { saleOrg = value; }
}
///
/// 用途类型(订货单位/结算单位/最终用户/收货单位)
///
[Description("用途类型")]
[Nullable(true)]
[DataLength(20)]
public string CustmUse
{
get { return custmUse; }
set { custmUse = value; }
}
///
/// 国内/国外(0国外;1国内)
///
[Description("国内/国外")]
[Nullable(false)]
[DataLength(1)]
public string ChnFl
{
get { return chnFl; }
set { chnFl = value; }
}
///
/// 客户类别(终端客户、经销商)
///
[Description("客户类别")]
[Nullable(true)]
[DataLength(20)]
public string CustmCtgry
{
get { return custmCtgry; }
set { custmCtgry = value; }
}
///
/// 客户性质(一般用户、重点用户、大客户)
///
[Description("客户性质")]
[Nullable(true)]
[DataLength(20)]
public string CustmPrpty
{
get { return custmPrpty; }
set { custmPrpty = value; }
}
///
/// 客户等级
///
[Description("客户等级")]
[Nullable(true)]
[DataLength(20)]
public string CustmLvl
{
get { return custmLvl; }
set { custmLvl = value; }
}
///
/// 法人
///
[Description("法人")]
[Nullable(true)]
[DataLength(20)]
public string LegalPsn
{
get { return legalPsn; }
set { legalPsn = value; }
}
///
/// 委托代理人
///
[Description("联系人")]
[Nullable(true)]
[DataLength(20)]
public string Agent
{
get { return agent; }
set { agent = value; }
}
///
/// 地址
///
[Description("地址")]
[Nullable(true)]
[DataLength(500)]
public string Address
{
get { return address; }
set { address = value; }
}
///
/// 行政片区
///
[Description("行政片区")]
[Nullable(true)]
[DataLength(20)]
public string Bigarea
{
get { return bigarea; }
set { bigarea = value; }
}
///
/// 省市/区域
///
[Description("省市/区域")]
[Nullable(true)]
[DataLength(40)]
public string RegionNo
{
get { return regionNo; }
set { regionNo = value; }
}
///
/// 邮编
///
[Description("邮编")]
[Nullable(true)]
[DataLength(20)]
public string ZipCode
{
get { return zipCode; }
set { zipCode = value; }
}
///
/// 开户银行
///
[Description("开户银行")]
[Nullable(true)]
[DataLength(50)]
public string Bank
{
get { return bank; }
set { bank = value; }
}
///
/// 帐号
///
[Description("帐号")]
[Nullable(true)]
[DataLength(50)]
public string Account
{
get { return account; }
set { account = value; }
}
///
/// 税号
///
[Description("税号")]
[Nullable(true)]
[DataLength(50)]
public string TaxId
{
get { return taxId; }
set { taxId = value; }
}
///
/// 电话
///
[Description("电话")]
[Nullable(true)]
[DataLength(20)]
public string Phone
{
get { return phone; }
set { phone = value; }
}
///
/// 传真
///
[Description("传真")]
[Nullable(true)]
[DataLength(20)]
public string Fax
{
get { return fax; }
set { fax = value; }
}
///
/// 客户资质材料(文件路径的地址)
///
[Description("客户资质材料")]
[Nullable(true)]
[DataLength(100)]
public string CustmData
{
get { return custmData; }
set { custmData = value; }
}
///
/// 备注
///
[Description("备注")]
[Nullable(true)]
[DataLength(200)]
public string Memo
{
get { return memo; }
set { memo = value; }
}
///
/// 有效标志(1:有效,0:无效)
///
[Description("有效标志")]
[Nullable(true)]
[DataLength(1)]
public string Validflag
{
get { return validflag; }
set { validflag = value; }
}
///
/// 创建人
///
[Description("创建人")]
[Nullable(true)]
[DataLength(20)]
public string CreateName
{
get { return createName; }
set { createName = value; }
}
///
/// 创建时间
///
[Description("创建时间")]
[Nullable(true)]
public string CreateTime
{
get { return createTime; }
set { createTime = value; }
}
///
/// 修改人
///
[Description("修改人")]
[Nullable(true)]
[DataLength(20)]
public string UpdateName
{
get { return updateName; }
set { updateName = value; }
}
///
/// 修改时间
///
[Description("修改时间")]
[Nullable(true)]
public string UpdateTime
{
get { return updateTime; }
set { updateTime = value; }
}
///
/// 删除人
///
[Description("删除人")]
[Nullable(true)]
[DataLength(20)]
public string DeleteName
{
get { return deleteName; }
set { deleteName = value; }
}
///
/// 删除时间
///
[Description("删除时间")]
[Nullable(true)]
public string DeleteTime
{
get { return deleteTime; }
set { deleteTime = value; }
}
}
}