zoukankan      html  css  js  c++  java
  • 银行营业网点管理系统——entity类(Branches)

    package BranchesMgr.entity;
    /**
     * 
     * @author Administrator
     *网点信息表
     */
    public class Branches {
    	private int id;
    	private String name;
    	private int cityAreatyid;
    	private String cityName;
    	public String getCityName() {
    		return cityName;
    	}
    	public void setCityName(String cityName) {
    		this.cityName = cityName;
    	}
    	private String address;
    	private String telephone;
    	public int getId() {
    		return id;
    	}
    	public void setId(int id) {
    		this.id = id;
    	}
    	public String getName() {
    		return name;
    	}
    	public void setName(String name) {
    		this.name = name;
    	}
    	public int getCityAreatyid() {
    		return cityAreatyid;
    	}
    	public void setCityAreatyid(int cityAreatyid) {
    		this.cityAreatyid = cityAreatyid;
    	}
    	public String getAddress() {
    		return address;
    	}
    	public void setAddress(String address) {
    		this.address = address;
    	}
    	public String getTelephone() {
    		return telephone;
    	}
    	public void setTelephone(String telephone) {
    		this.telephone = telephone;
    	}
    	
    }
    

  • 相关阅读:
    IAccessible ( 一 )
    object sender,EventArgs e的一些讲解
    C# 操作符重载
    MSAA简介
    小试NArrange
    C++宏
    Ext.form.ComboBox简单用法
    SQL SERVER 收缩数据库的命令
    ext.grid的配置属性和方法
    磁盘阵列
  • 原文地址:https://www.cnblogs.com/a1111/p/6540284.html
Copyright © 2011-2022 走看看