📄 rwgldmswrydao.java
字号:
package gov.gdlt.ssgly.taxcore.taxdao.rwgl;
import java.util.*;
import gov.gdlt.ssgly.taxcore.comm.dao.*;
import gov.gdlt.ssgly.taxcore.comm.exception.*;
/**
* <p>Title: </p>
*
* <p>Description: 广东地税税收管理员工作平台</p>
*
* <p>Copyright: Copyright (c) 2005 广东省地方税务局,广州市地方税务局</p>
*
* <p>Company: 广州地税</p>
*
* @author 张承华
* @version 1.0
*/
public class RWGLdmswryDAO extends BaseDataAccessObject {
private String SWRY_DM, MC, XB, SWJG_DM, SFZHM, ZW, ZC_DM, XY_BJ, USERPASSWORD;
private Date JR_RQ, LK_RQ, LR_SJ, XG_SJ;// FROM DB_SSGLY.T_DM_GY_SWRY
public RWGLdmswryDAO() {
}
public static void main(String[] args) {
RWGLdmswryDAO rwgldmswrydao = new RWGLdmswryDAO();
}
public Date getJR_RQ() {
return JR_RQ;
}
public Date getLK_RQ() {
return LK_RQ;
}
public Date getLR_SJ() {
return LR_SJ;
}
public String getMC() {
return MC;
}
public String getSFZHM() {
return SFZHM;
}
public String getSWJG_DM() {
return SWJG_DM;
}
public String getSWRY_DM() {
return SWRY_DM;
}
public String getUSERPASSWORD() {
return USERPASSWORD;
}
public String getXB() {
return XB;
}
public Date getXG_SJ() {
return XG_SJ;
}
public String getXY_BJ() {
return XY_BJ;
}
public String getZC_DM() {
return ZC_DM;
}
public String getZW() {
return ZW;
}
public void setJR_RQ(Date JR_RQ) {
this.JR_RQ = JR_RQ;
}
public void setLK_RQ(Date LK_RQ) {
this.LK_RQ = LK_RQ;
}
public void setLR_SJ(Date LR_SJ) {
this.LR_SJ = LR_SJ;
}
public void setMC(String MC) {
this.MC = MC;
}
public void setSFZHM(String SFZHM) {
this.SFZHM = SFZHM;
}
public void setSWJG_DM(String SWJG_DM) {
this.SWJG_DM = SWJG_DM;
}
public void setSWRY_DM(String SWRY_DM) {
this.SWRY_DM = SWRY_DM;
}
public void setUSERPASSWORD(String USERPASSWORD) {
this.USERPASSWORD = USERPASSWORD;
}
public void setXB(String XB) {
this.XB = XB;
}
public void setXG_SJ(Date XG_SJ) {
this.XG_SJ = XG_SJ;
}
public void setXY_BJ(String XY_BJ) {
this.XY_BJ = XY_BJ;
}
public void setZC_DM(String ZC_DM) {
this.ZC_DM = ZC_DM;
}
public void setZW(String ZW) {
this.ZW = ZW;
}
//取得指定税务机关的税务人员,税务机关格式:24401020000或者24401020000%
public List getDmSwry () throws TaxBaseSystemException {
List list = null;
try {
list = this.selectAll("DMXXXXXX.selectDmSwry", this);
} catch (Exception e) {
e.printStackTrace();
throw new TaxBaseSystemException(e.getMessage());
}
return list;
}
//取得指定税务机关的税务人员,税务机关格式:24401020000或者24401020000%
public List getDmSwry (String swjg) throws TaxBaseSystemException {
List list = null;
try {
this.setSWJG_DM(swjg);
list = this.selectAll("DMXXXXXX.selectDmSwry", this);
} catch (Exception e) {
e.printStackTrace();
throw new TaxBaseSystemException(e.getMessage());
}
return list;
}
///////////////////////////////////////////////////////////////////////////////
public RWGLdmswryDAO getDmSwryBySwryDm (String swrydm) throws TaxBaseSystemException {
try {
this.setSWRY_DM(swrydm);
this.selectAll("DMXXXXXX.selectDmSwryBySwryDm", this);
} catch (Exception e) {
e.printStackTrace();
throw new TaxBaseSystemException(e.getMessage());
}
return this;
}
public RWGLdmswryDAO getDmSwryBySwryDm () throws TaxBaseSystemException {
try {
this.selectAll("DMXXXXXX.selectDmSwryBySwryDm", this);
} catch (Exception e) {
e.printStackTrace();
throw new TaxBaseSystemException(e.getMessage());
}
return this;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -