client.java
来自「利用JAVA语言以及数据库技术及网络编程相关技术来实现的一个简单的小的应用系统」· Java 代码 · 共 39 行
JAVA
39 行
//---------------------------------------------------------
// Application: Gsm of Application
// Author : esingle
// File : Client.java
//
// Copyright 2004 landsoft corp
// Generated at Wed Mar 10 15:35:57 CST 2004
// created by 曹广鑫
// mailto:gxcao@mail.tsinghua.edu.cn
//---------------------------------------------------------
package com.landsoft.gsm.model;
public class Client {
private String name;
private String sfzh;
private String mobile;
public String getName() {
return name;
}
public String getSfzh() {
return sfzh;
}
public String getMobile() {
return mobile;
}
public void setName(String name) {
this.name = name;
}
public void setSfzh(String sfzh) {
this.sfzh = sfzh;
}
public void setMobile(String mobile) {
this.mobile = mobile;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?