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;
    	}
    	
    }
    

  • 相关阅读:
    券商
    养生之道
    房产买卖
    货币常识
    虚拟币
    其他开源项目
    Shiro
    文件上传插件
    JAVA常见问题
    如何写好PPT
  • 原文地址:https://www.cnblogs.com/a1111/p/12816466.html
Copyright © 2011-2022 走看看