📄 clientsform.java
字号:
//---------------------------------------------------------
// Application: Crm of Enterprice
// Author : eSingle
// File : ClientsForm.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.controller;
import org.apache.struts.action.*;
import org.apache.struts.validator.*;
import com.landsoft.crm.model.*;
public class ClientsForm extends ValidatorForm {
public final static int ADD = 1;
public final static int EDIT = 2;
private int strutsAction;
private String strutsButton = "";
private String sex = "";
private String phone = "";
private String mobile = "";
private String address = "";
private String http = "";
private String citycode = "";
private String clientname = "";
public int getStrutsAction() {
return strutsAction;
}
public String getStrutsButton() {
return strutsButton;
}
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 setStrutsAction(int strutsAction) {
this.strutsAction = strutsAction;
}
public void setStrutsButton(String strutsButton) {
this.strutsButton = strutsButton;
}
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 + -