📄 detailfinance.java
字号:
package com.woyi.dto;
// default package
import java.util.Date;
/**
* DetailFinance generated by MyEclipse Persistence Tools
*/
public class DetailFinance implements java.io.Serializable {
// Fields
private Integer sqlertid;
private String corporate;
private String reason;
private String feeType;
private String chgType;
private String examtype;
private Date chgdate;
private String svcnum;
private Float shouldChg;
private Float alreadyChg;
private Float noChg;
private Date optdate;
private String optrid;
private String remark;
// Constructors
/** default constructor */
public DetailFinance() {
}
/** minimal constructor */
public DetailFinance(Date chgdate) {
this.chgdate = chgdate;
}
/** full constructor */
public DetailFinance(String corporate, String reason, String feeType,
String chgType, String examtype, Date chgdate, String svcnum,
Float shouldChg, Float alreadyChg, Float noChg, Date optdate,
String optrid, String remark) {
this.corporate = corporate;
this.reason = reason;
this.feeType = feeType;
this.chgType = chgType;
this.examtype = examtype;
this.chgdate = chgdate;
this.svcnum = svcnum;
this.shouldChg = shouldChg;
this.alreadyChg = alreadyChg;
this.noChg = noChg;
this.optdate = optdate;
this.optrid = optrid;
this.remark = remark;
}
// Property accessors
public Integer getSqlertid() {
return this.sqlertid;
}
public void setSqlertid(Integer sqlertid) {
this.sqlertid = sqlertid;
}
public String getCorporate() {
return this.corporate;
}
public void setCorporate(String corporate) {
this.corporate = corporate;
}
public String getReason() {
return this.reason;
}
public void setReason(String reason) {
this.reason = reason;
}
public String getFeeType() {
return this.feeType;
}
public void setFeeType(String feeType) {
this.feeType = feeType;
}
public String getChgType() {
return this.chgType;
}
public void setChgType(String chgType) {
this.chgType = chgType;
}
public String getExamtype() {
return this.examtype;
}
public void setExamtype(String examtype) {
this.examtype = examtype;
}
public Date getChgdate() {
return this.chgdate;
}
public void setChgdate(Date chgdate) {
this.chgdate = chgdate;
}
public String getSvcnum() {
return this.svcnum;
}
public void setSvcnum(String svcnum) {
this.svcnum = svcnum;
}
public Float getShouldChg() {
return this.shouldChg;
}
public void setShouldChg(Float shouldChg) {
this.shouldChg = shouldChg;
}
public Float getAlreadyChg() {
return this.alreadyChg;
}
public void setAlreadyChg(Float alreadyChg) {
this.alreadyChg = alreadyChg;
}
public Float getNoChg() {
return this.noChg;
}
public void setNoChg(Float noChg) {
this.noChg = noChg;
}
public Date getOptdate() {
return this.optdate;
}
public void setOptdate(Date optdate) {
this.optdate = optdate;
}
public String getOptrid() {
return this.optrid;
}
public void setOptrid(String optrid) {
this.optrid = optrid;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -