⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 clients.java

📁 客户关系管理系统
💻 JAVA
字号:
//---------------------------------------------------------
// Application: Crm of Enterprice
// Author     : eSingle
// File       : Clients.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 Clients {
  private String sex;
  private String phone;
  private String mobile;
  private String address;
  private String http;
  private String citycode;
  private String clientname;

  public String getSex() {
    return sex;
  }
  public String getPhone() {
    return phone;
  }
  public String getMobile() {
    return mobile;
  }
  public String getAddress() {
    return address;
  }
  public String getHttp() {
    return http;
  }
  public String getCitycode() {
    return citycode;
  }
  public String getClientname() {
    return clientname;
  }

  public void setSex(String sex) {
    this.sex = sex;
  }
  public void setPhone(String phone) {
    this.phone = phone;
  }
  public void setMobile(String mobile) {
    this.mobile = mobile;
  }
  public void setAddress(String address) {
    this.address = address;
  }
  public void setHttp(String http) {
    this.http = http;
  }
  public void setCitycode(String citycode) {
    this.citycode = citycode;
  }
  public void setClientname(String clientname) {
    this.clientname = clientname;
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -