📄 enterpriseopeninfomodel.java
字号:
/**
* EnterpriseOpenInfoModel.java 11/11/2003,
* Author:liuxiuhui
*
* Copyright (c) 2003 Censoft Corp.
* Beijing China
* All rights reserved.
*
* Modifier:
* Time:
***/
package com.gs.component.enterprise.model;
public class EnterpriseOpenInfoModel
implements java.io.Serializable {
private String frmc; //法人名称 basis01 field007
private String qylx; //企业类型 basis01 field037
private String jyfw; //经营范围 basis01 field056
private String qymc; //企业名称 basis01 field004
private String zhch;// 企业注册号basis01 field101
private String zczb;// 企业注册资本basis01 field009
/**
* Returns the zczb.
* @return String
*/
public String getZczb() {
return zczb;
}
/**
* Sets the zczb.
* @param zczb The zczb to set
*/
public void setZczb(String zczb) {
this.zczb = zczb;
}
/**
* Returns the qymc.
* @return String
*/
public String getQymc() {
return qymc;
}
/**
* Sets the qymc.
* @param qymc The qymc to set
*/
public void setQymc(String qymc) {
this.qymc = qymc;
}
/**
* Returns the frmc.
* @return String
*/
public String getFrmc() {
return frmc;
}
/**
* Sets the frmc.
* @param frmc The frmc to set
*/
public void setFrmc(String frmc) {
this.frmc = frmc;
}
/**
* Returns the jyfw.
* @return String
*/
public String getJyfw() {
return jyfw;
}
/**
* Sets the jyfw.
* @param jyfw The jyfw to set
*/
public void setJyfw(String jyfw) {
this.jyfw = jyfw;
}
/**
* Returns the qylx.
* @return String
*/
public String getQylx() {
return qylx;
}
/**
* Sets the qylx.
* @param qylx The qylx to set
*/
public void setQylx(String qylx) {
this.qylx = qylx;
}
public void setZhch(String zhch){
this.zhch=zhch;
}
public String getZhch(){
return this.zhch;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -