📄 city.java
字号:
//---------------------------------------------------------
// Application: Crm of Enterprice
// Author : eSingle
// File : City.java
//
// Copyright 2002 LandSoft Corp.
// Generated at Sun Nov 17 23:11:00 CST 2002
// Created by 曹广鑫
// mail to bandsoft@163.com
//---------------------------------------------------------
package com.landsoft.crm.model;
public class City {
private String cityname;
private String citycode;
private String nationcode;
private String provincecode;
public String getCityname() {
return cityname;
}
public String getCitycode() {
return citycode;
}
public String getNationcode() {
return nationcode;
}
public String getProvincecode() {
return provincecode;
}
public void setCityname(String cityname) {
this.cityname = cityname;
}
public void setCitycode(String citycode) {
this.citycode = citycode;
}
public void setNationcode(String nationcode) {
this.nationcode = nationcode;
}
public void setProvincecode(String provincecode) {
this.provincecode = provincecode;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -