package com.yinhe.crm.bean;
import java.util.Set;
import com.yinhe.crm.identity.IBean;
/**
 * CstCustomer generated by MyEclipse Persistence Tools
 */
public class CstCustomer implements IBean {
	// Fields
	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	private String custNo;
	private String custName;
	private String custRegion;
	private Long custManagerId;
	private String custManagerName;
	private Integer custLevel;
	private String custLevelLabel;
	private Integer custSatisfy;
	private Integer custCredit;
	private String custAddr;
	private String custZip;
	private String custTel;
	private String custFax;
	private String custWebsite;
	private String custLicenceNo;
	private String custChieftain;
	private Long custBankroll;
	private Long custTurnover;
	private String custBank;
	private String custBankAccount;
	private String custLocalTaxNo;
	private String custNationalTaxNo;
	private String custStatus="1";//1:新建状态  2:预警
	
	private Set<CstLinkman> linkmans;
	
	private Set<Orders> orders;//订单
	
	// Constructors
	public Set<Orders> getOrders() {
		return orders;
	}
	public void setOrders(Set<Orders> orders) {
		this.orders = orders;
	}
	public Set<CstLinkman> getLinkmans() {
		return linkmans;
	}
	public void setLinkmans(Set<CstLinkman> linkmans) {
		this.linkmans = linkmans;
	}
	/** default constructor */
	public CstCustomer() {
		
	}
	/** minimal constructor */
	public CstCustomer(String custName) {
		this.custName = custName;
	}
	/** full constructor */
	public CstCustomer(String custName, String custRegion, Long custManagerId,
			String custManagerName, Integer custLevel, String custLevelLabel,
			Integer custSatisfy, Integer custCredit, String custAddr,
			String custZip, String custTel, String custFax, String custWebsite,
			String custLicenceNo, String custChieftain, Long custBankroll,
			Long custTurnover, String custBank, String custBankAccount,
			String custLocalTaxNo, String custNationalTaxNo, String custStatus) {
		this.custName = custName;
		this.custRegion = custRegion;
		this.custManagerId = custManagerId;
		this.custManagerName = custManagerName;
		this.custLevel = custLevel;
		this.custLevelLabel = custLevelLabel;
		this.custSatisfy = custSatisfy;
		this.custCredit = custCredit;
		this.custAddr = custAddr;
		this.custZip = custZip;
		this.custTel = custTel;
		this.custFax = custFax;
		this.custWebsite = custWebsite;
		this.custLicenceNo = custLicenceNo;
		this.custChieftain = custChieftain;
		this.custBankroll = custBankroll;
		this.custTurnover = custTurnover;
		this.custBank = custBank;
		this.custBankAccount = custBankAccount;
		this.custLocalTaxNo = custLocalTaxNo;
		this.custNationalTaxNo = custNationalTaxNo;
		this.custStatus = custStatus;
	}
	// Property accessors
	public String getCustNo() {
		return this.custNo;
	}
	public void setCustNo(String custNo) {
		this.custNo = custNo;
	}
	public String getCustName() {
		return this.custName;
	}
	public void setCustName(String custName) {
		this.custName = custName;
	}
	public String getCustRegion() {
		return this.custRegion;
	}
	public void setCustRegion(String custRegion) {
		this.custRegion = custRegion;
	}
	public Long getCustManagerId() {
		return this.custManagerId;
	}
	public void setCustManagerId(Long custManagerId) {
		this.custManagerId = custManagerId;
	}
	public String getCustManagerName() {
		return this.custManagerName;
	}
	public void setCustManagerName(String custManagerName) {
		this.custManagerName = custManagerName;
	}
	public Integer getCustLevel() {
		return this.custLevel;
	}
	public void setCustLevel(Integer custLevel) {
		this.custLevel = custLevel;
	}
	public String getCustLevelLabel() {
		return this.custLevelLabel;
	}
	public void setCustLevelLabel(String custLevelLabel) {
		this.custLevelLabel = custLevelLabel;
	}
	public Integer getCustSatisfy() {
		return this.custSatisfy;
	}
	public void setCustSatisfy(Integer custSatisfy) {
		this.custSatisfy = custSatisfy;
	}
	public Integer getCustCredit() {
		return this.custCredit;
	}
	public void setCustCredit(Integer custCredit) {
		this.custCredit = custCredit;
	}
	public String getCustAddr() {
		return this.custAddr;
	}
	public void setCustAddr(String custAddr) {
		this.custAddr = custAddr;
	}
	public String getCustZip() {
		return this.custZip;
	}
	public void setCustZip(String custZip) {
		this.custZip = custZip;
	}
	public String getCustTel() {
		return this.custTel;
	}
	public void setCustTel(String custTel) {
		this.custTel = custTel;
	}
	public String getCustFax() {
		return this.custFax;
	}
	public void setCustFax(String custFax) {
		this.custFax = custFax;
	}
	public String getCustWebsite() {
		return this.custWebsite;
	}
	public void setCustWebsite(String custWebsite) {
		this.custWebsite = custWebsite;
	}
	public String getCustLicenceNo() {
		return this.custLicenceNo;
	}
	public void setCustLicenceNo(String custLicenceNo) {
		this.custLicenceNo = custLicenceNo;
	}
	public String getCustChieftain() {
		return this.custChieftain;
	}
	public void setCustChieftain(String custChieftain) {
		this.custChieftain = custChieftain;
	}
	public Long getCustBankroll() {
		return this.custBankroll;
	}
	public void setCustBankroll(Long custBankroll) {
		this.custBankroll = custBankroll;
	}
	public Long getCustTurnover() {
		return this.custTurnover;
	}
	public void setCustTurnover(Long custTurnover) {
		this.custTurnover = custTurnover;
	}
	public String getCustBank() {
		return this.custBank;
	}
	public void setCustBank(String custBank) {
		this.custBank = custBank;
	}
	public String getCustBankAccount() {
		return this.custBankAccount;
	}
	public void setCustBankAccount(String custBankAccount) {
		this.custBankAccount = custBankAccount;
	}
	public String getCustLocalTaxNo() {
		return this.custLocalTaxNo;
	}
	public void setCustLocalTaxNo(String custLocalTaxNo) {
		this.custLocalTaxNo = custLocalTaxNo;
	}
	public String getCustNationalTaxNo() {
		return this.custNationalTaxNo;
	}
	public void setCustNationalTaxNo(String custNationalTaxNo) {
		this.custNationalTaxNo = custNationalTaxNo;
	}
	public String getCustStatus() {
		return this.custStatus;
	}
	public void setCustStatus(String custStatus) {
		this.custStatus = custStatus;
	}
}
 最近下载更多
最近下载更多
                
                奋斗的小蚂蚁     LV16
                10月21日
            
            
        
                pangzhihui     LV14
                2023年12月10日
            
            
        
                我是helloworld     LV23
                2022年5月23日
            
            
        
                7z7z7z     LV5
                2022年3月20日
            
            
        
                wanglinddad     LV55
                2022年2月28日
            
            
        
                ericxu1116     LV24
                2021年7月5日
            
            
        
                张青峰     LV10
                2020年7月28日
            
            
        
                马123456     LV8
                2020年6月24日
            
            
        
                caochengbo     LV6
                2020年6月14日
            
            
        
                skipple3     LV39
                2020年6月10日
            
            
        
 
     
                 
                 最近浏览
最近浏览