?? yhzobject.java~2~
字號:
package com.jysy.taxcore.comm.ic;import java.util.ArrayList;import java.util.Calendar;/** * * 月匯總數(shù)據(jù)對象 * * <p>Title: RhzObject</p> * <p>Description: 南京地稅稅控機IC卡編程接口</p> * <p>Copyright: Copyright (c) 2004 廣東京粵商用技術(shù)有限公司</p> * <p>Company: 廣東京粵商用技術(shù)有限公司</p> * @author 李志毅 * @version 1.0 */public class YhzObject extends BaseICObject { //報稅年月~~交易次數(shù)~~廢票次數(shù)~~總營業(yè)額~~總廢票額 /** * 申報日期 */ private Calendar sbrq; /** * 交易次數(shù) */ private int jycs; /** * 廢票次數(shù) */ private int fpcs; /** * 退票次數(shù) */ private int tpcs; /** * 總營業(yè)額 */ private double zyye; /** * 總廢票額 */ private double zfpe; /** * 總退票額 */ private double ztpe; /** * 分項目匯總明細(xì) */ private ArrayList fxmhzmx; public RhzObject() { } public Calendar getSbrq() { return sbrq; } public void setSbrq(Calendar sbrq) { this.sbrq = sbrq; } public int getJycs() { return jycs; } public void setJycs(int jycs) { this.jycs = jycs; } public int getFpcs() { return fpcs; } public void setFpcs(int fpcs) { this.fpcs = fpcs; } public int getTpcs() { return tpcs; } public void setTpcs(int tpcs) { this.tpcs = tpcs; } public double getZyye() { return zyye; } public void setZyye(double zyye) { this.zyye = zyye; } public double getZfpe() { return zfpe; } public void setZfpe(double zfpe) { this.zfpe = zfpe; } public double getZtpe() { return ztpe; } public void setZtpe(double ztpe) { this.ztpe = ztpe; } public ArrayList getFxmhzmx() { return fxmhzmx; } public void setFxmhzmx(ArrayList fxmhzmx) { this.fxmhzmx = fxmhzmx; }}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -