client.java~1~

来自「上传个比较简单的代码 有问题的大家及时交流啊」· JAVA~1~ 代码 · 共 39 行

JAVA~1~
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 + -
显示快捷键?