⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cardfees.java

📁 THIS IS A FINANCIAL BANK APPLICATION
💻 JAVA
字号:
package Pcrd.Subscription.Entities;

import java.io.Serializable;
import java.math.BigDecimal;
import java.sql.Date;
import javax.persistence.Column;
import javax.persistence.EmbeddedId;
import javax.persistence.Entity;
import javax.persistence.Table;

@Entity
@Table(name="CARD_FEES")
public class CardFees implements Serializable {
	@EmbeddedId
	private CardFeesPK pk;

	@Column(name="ABRV_DESCRIPTION")
	private String abrvDescription;

	private String description;

	private String status;

	@Column(name="CARD_FEES_BILLING_EVT")
	private String cardFeesBillingEvt;

	@Column(name="CARD_FEES_GRACE_PERIOD")
	private BigDecimal cardFeesGracePeriod;

	@Column(name="CARD_FEES_BILLING_DATE")
	private String cardFeesBillingDate;

	@Column(name="CARD_FEES_BILLING_PERIOD")
	private String cardFeesBillingPeriod;

	@Column(name="NUMBER_OF_YEAR")
	private BigDecimal numberOfYear;

	@Column(name="CURRENCY_CODE")
	private String currencyCode;

	@Column(name="SUBSCRIPTION_AMOUNT")
	private BigDecimal subscriptionAmount;

	@Column(name="FEES_AMOUNT_FIRST")
	private BigDecimal feesAmountFirst;

	@Column(name="FEES_AMOUNT_RENEW")
	private BigDecimal feesAmountRenew;

	@Column(name="SUBSEQUENT_RENEWAL_FEES")
	private BigDecimal subsequentRenewalFees;

	@Column(name="PLASTIC_FEES")
	private BigDecimal plasticFees;

	@Column(name="PLASTIC_FEES_INDICATOR")
	private String plasticFeesIndicator;

	@Column(name="PHOTO_FEES")
	private BigDecimal photoFees;

	@Column(name="PHOTO_FEES_INDICATOR")
	private String photoFeesIndicator;

	@Column(name="PROMOTION_STARTING_DATE")
	private Date promotionStartingDate;

	@Column(name="PROMOTION_ENDING_DATE")
	private Date promotionEndingDate;

	@Column(name="PROMOTION_FEES_AMOUNT")
	private BigDecimal promotionFeesAmount;

	@Column(name="DAMAGED_REPLACEMENT_FEES")
	private BigDecimal damagedReplacementFees;

	@Column(name="ERRONEOUS_REPLACEMENT_FEES")
	private BigDecimal erroneousReplacementFees;

	@Column(name="LOST_REPLACEMENT_FEES")
	private BigDecimal lostReplacementFees;

	@Column(name="STOLEN_REPLACEMENT_FEES")
	private BigDecimal stolenReplacementFees;

	@Column(name="COUNTREFEIT_REPLACEMENT_FEES")
	private BigDecimal countrefeitReplacementFees;

	@Column(name="EMERGENCY_REPLACEMENT_FEES")
	private BigDecimal emergencyReplacementFees;

	@Column(name="PIN_REPLACEMENT_FEES")
	private BigDecimal pinReplacementFees;

	@Column(name="OTHER_REPLACEMENT_FEES")
	private BigDecimal otherReplacementFees;

	@Column(name="OTHER_FEES_1")
	private BigDecimal otherFees1;

	@Column(name="OTHER_FEES_1_INDICATOR")
	private String otherFees1Indicator;

	@Column(name="OTHER_FEES_2")
	private BigDecimal otherFees2;

	@Column(name="OTHER_FEES_2_INDICATOR")
	private String otherFees2Indicator;

	@Column(name="OTHER_FEES_3")
	private BigDecimal otherFees3;

	@Column(name="OTHER_FEES_3_INDICATOR")
	private String otherFees3Indicator;

	@Column(name="OTHER_FEES_4")
	private BigDecimal otherFees4;

	@Column(name="OTHER_FEES_4_INDICATOR")
	private String otherFees4Indicator;

	@Column(name="USER_CREATE")
	private String userCreate;

	@Column(name="DATE_CREATE")
	private Date dateCreate;

	@Column(name="USER_MODIF")
	private String userModif;

	@Column(name="DATE_MODIF")
	private Date dateModif;

	private static final long serialVersionUID = 1L;

	public CardFees() {
		super();
	}

	public CardFeesPK getPk() {
		return this.pk;
	}

	public void setPk(CardFeesPK pk) {
		this.pk = pk;
	}

	public String getAbrvDescription() {
		return this.abrvDescription;
	}

	public void setAbrvDescription(String abrvDescription) {
		this.abrvDescription = abrvDescription;
	}

	public String getDescription() {
		return this.description;
	}

	public void setDescription(String description) {
		this.description = description;
	}

	public String getStatus() {
		return this.status;
	}

	public void setStatus(String status) {
		this.status = status;
	}

	public String getCardFeesBillingEvt() {
		return this.cardFeesBillingEvt;
	}

	public void setCardFeesBillingEvt(String cardFeesBillingEvt) {
		this.cardFeesBillingEvt = cardFeesBillingEvt;
	}

	public BigDecimal getCardFeesGracePeriod() {
		return this.cardFeesGracePeriod;
	}

	public void setCardFeesGracePeriod(BigDecimal cardFeesGracePeriod) {
		this.cardFeesGracePeriod = cardFeesGracePeriod;
	}

	public String getCardFeesBillingDate() {
		return this.cardFeesBillingDate;
	}

	public void setCardFeesBillingDate(String cardFeesBillingDate) {
		this.cardFeesBillingDate = cardFeesBillingDate;
	}

	public String getCardFeesBillingPeriod() {
		return this.cardFeesBillingPeriod;
	}

	public void setCardFeesBillingPeriod(String cardFeesBillingPeriod) {
		this.cardFeesBillingPeriod = cardFeesBillingPeriod;
	}

	public BigDecimal getNumberOfYear() {
		return this.numberOfYear;
	}

	public void setNumberOfYear(BigDecimal numberOfYear) {
		this.numberOfYear = numberOfYear;
	}

	public String getCurrencyCode() {
		return this.currencyCode;
	}

	public void setCurrencyCode(String currencyCode) {
		this.currencyCode = currencyCode;
	}

	public BigDecimal getSubscriptionAmount() {
		return this.subscriptionAmount;
	}

	public void setSubscriptionAmount(BigDecimal subscriptionAmount) {
		this.subscriptionAmount = subscriptionAmount;
	}

	public BigDecimal getFeesAmountFirst() {
		return this.feesAmountFirst;
	}

	public void setFeesAmountFirst(BigDecimal feesAmountFirst) {
		this.feesAmountFirst = feesAmountFirst;
	}

	public BigDecimal getFeesAmountRenew() {
		return this.feesAmountRenew;
	}

	public void setFeesAmountRenew(BigDecimal feesAmountRenew) {
		this.feesAmountRenew = feesAmountRenew;
	}

	public BigDecimal getSubsequentRenewalFees() {
		return this.subsequentRenewalFees;
	}

	public void setSubsequentRenewalFees(BigDecimal subsequentRenewalFees) {
		this.subsequentRenewalFees = subsequentRenewalFees;
	}

	public BigDecimal getPlasticFees() {
		return this.plasticFees;
	}

	public void setPlasticFees(BigDecimal plasticFees) {
		this.plasticFees = plasticFees;
	}

	public String getPlasticFeesIndicator() {
		return this.plasticFeesIndicator;
	}

	public void setPlasticFeesIndicator(String plasticFeesIndicator) {
		this.plasticFeesIndicator = plasticFeesIndicator;
	}

	public BigDecimal getPhotoFees() {
		return this.photoFees;
	}

	public void setPhotoFees(BigDecimal photoFees) {
		this.photoFees = photoFees;
	}

	public String getPhotoFeesIndicator() {
		return this.photoFeesIndicator;
	}

	public void setPhotoFeesIndicator(String photoFeesIndicator) {
		this.photoFeesIndicator = photoFeesIndicator;
	}

	public Date getPromotionStartingDate() {
		return this.promotionStartingDate;
	}

	public void setPromotionStartingDate(Date promotionStartingDate) {
		this.promotionStartingDate = promotionStartingDate;
	}

	public Date getPromotionEndingDate() {
		return this.promotionEndingDate;
	}

	public void setPromotionEndingDate(Date promotionEndingDate) {
		this.promotionEndingDate = promotionEndingDate;
	}

	public BigDecimal getPromotionFeesAmount() {
		return this.promotionFeesAmount;
	}

	public void setPromotionFeesAmount(BigDecimal promotionFeesAmount) {
		this.promotionFeesAmount = promotionFeesAmount;
	}

	public BigDecimal getDamagedReplacementFees() {
		return this.damagedReplacementFees;
	}

	public void setDamagedReplacementFees(BigDecimal damagedReplacementFees) {
		this.damagedReplacementFees = damagedReplacementFees;
	}

	public BigDecimal getErroneousReplacementFees() {
		return this.erroneousReplacementFees;
	}

	public void setErroneousReplacementFees(BigDecimal erroneousReplacementFees) {
		this.erroneousReplacementFees = erroneousReplacementFees;
	}

	public BigDecimal getLostReplacementFees() {
		return this.lostReplacementFees;
	}

	public void setLostReplacementFees(BigDecimal lostReplacementFees) {
		this.lostReplacementFees = lostReplacementFees;
	}

	public BigDecimal getStolenReplacementFees() {
		return this.stolenReplacementFees;
	}

	public void setStolenReplacementFees(BigDecimal stolenReplacementFees) {
		this.stolenReplacementFees = stolenReplacementFees;
	}

	public BigDecimal getCountrefeitReplacementFees() {
		return this.countrefeitReplacementFees;
	}

	public void setCountrefeitReplacementFees(BigDecimal countrefeitReplacementFees) {
		this.countrefeitReplacementFees = countrefeitReplacementFees;
	}

	public BigDecimal getEmergencyReplacementFees() {
		return this.emergencyReplacementFees;
	}

	public void setEmergencyReplacementFees(BigDecimal emergencyReplacementFees) {
		this.emergencyReplacementFees = emergencyReplacementFees;
	}

	public BigDecimal getPinReplacementFees() {
		return this.pinReplacementFees;
	}

	public void setPinReplacementFees(BigDecimal pinReplacementFees) {
		this.pinReplacementFees = pinReplacementFees;
	}

	public BigDecimal getOtherReplacementFees() {
		return this.otherReplacementFees;
	}

	public void setOtherReplacementFees(BigDecimal otherReplacementFees) {
		this.otherReplacementFees = otherReplacementFees;
	}

	public BigDecimal getOtherFees1() {
		return this.otherFees1;
	}

	public void setOtherFees1(BigDecimal otherFees1) {
		this.otherFees1 = otherFees1;
	}

	public String getOtherFees1Indicator() {
		return this.otherFees1Indicator;
	}

	public void setOtherFees1Indicator(String otherFees1Indicator) {
		this.otherFees1Indicator = otherFees1Indicator;
	}

	public BigDecimal getOtherFees2() {
		return this.otherFees2;
	}

	public void setOtherFees2(BigDecimal otherFees2) {
		this.otherFees2 = otherFees2;
	}

	public String getOtherFees2Indicator() {
		return this.otherFees2Indicator;
	}

	public void setOtherFees2Indicator(String otherFees2Indicator) {
		this.otherFees2Indicator = otherFees2Indicator;
	}

	public BigDecimal getOtherFees3() {
		return this.otherFees3;
	}

	public void setOtherFees3(BigDecimal otherFees3) {
		this.otherFees3 = otherFees3;
	}

	public String getOtherFees3Indicator() {
		return this.otherFees3Indicator;
	}

	public void setOtherFees3Indicator(String otherFees3Indicator) {
		this.otherFees3Indicator = otherFees3Indicator;
	}

	public BigDecimal getOtherFees4() {
		return this.otherFees4;
	}

	public void setOtherFees4(BigDecimal otherFees4) {
		this.otherFees4 = otherFees4;
	}

	public String getOtherFees4Indicator() {
		return this.otherFees4Indicator;
	}

	public void setOtherFees4Indicator(String otherFees4Indicator) {
		this.otherFees4Indicator = otherFees4Indicator;
	}

	public String getUserCreate() {
		return this.userCreate;
	}

	public void setUserCreate(String userCreate) {
		this.userCreate = userCreate;
	}

	public Date getDateCreate() {
		return this.dateCreate;
	}

	public void setDateCreate(Date dateCreate) {
		this.dateCreate = dateCreate;
	}

	public String getUserModif() {
		return this.userModif;
	}

	public void setUserModif(String userModif) {
		this.userModif = userModif;
	}

	public Date getDateModif() {
		return this.dateModif;
	}

	public void setDateModif(Date dateModif) {
		this.dateModif = dateModif;
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -