All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.com.antcloud.api.riskplus.v1_0.model.RepayTrail Maven / Gradle / Ivy

//
//  Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
//  Licensed under the Apache License, Version 2.0 (the "License");
//  you may not use this file except in compliance with the License.
//  You may obtain a copy of the License at
//
//  http://www.apache.org/licenses/LICENSE-2.0
//
//  Unless required by applicable law or agreed to in writing, software
//  distributed under the License is distributed on an "AS IS" BASIS,
//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//  See the License for the specific language governing permissions and
//  limitations under the License.
//
//
package cn.com.antcloud.api.riskplus.v1_0.model;

import java.lang.Long;
import java.lang.String;
import java.util.Date;
import javax.validation.constraints.NotNull;

/**
 * 天枢专用RepayTrail结构体 */
public class RepayTrail {
  @NotNull
  private String period;

  @NotNull
  private Long needAmt;

  @NotNull
  private Long alreadyAmt;

  @NotNull
  private Long transPrincipal;

  @NotNull
  private Long transInterest;

  @NotNull
  private Long transFee;

  @NotNull
  private Long remainPrincipal;

  @NotNull
  private Date repayTime;

  @NotNull
  private Date startTime;

  @NotNull
  private Date endTime;

  @NotNull
  private String trialNo;

  /**
   * 期数 */
  public String getPeriod() {
    return this.period;
  }

  /**
   * 期数 */
  public void setPeriod(String period) {
    this.period = period;
  }

  /**
   * 每期应还金额 */
  public Long getNeedAmt() {
    return this.needAmt;
  }

  /**
   * 每期应还金额 */
  public void setNeedAmt(Long needAmt) {
    this.needAmt = needAmt;
  }

  /**
   * 每期已还金额 */
  public Long getAlreadyAmt() {
    return this.alreadyAmt;
  }

  /**
   * 每期已还金额 */
  public void setAlreadyAmt(Long alreadyAmt) {
    this.alreadyAmt = alreadyAmt;
  }

  /**
   * 每期应还本金 */
  public Long getTransPrincipal() {
    return this.transPrincipal;
  }

  /**
   * 每期应还本金 */
  public void setTransPrincipal(Long transPrincipal) {
    this.transPrincipal = transPrincipal;
  }

  /**
   * 每期应还利息 */
  public Long getTransInterest() {
    return this.transInterest;
  }

  /**
   * 每期应还利息 */
  public void setTransInterest(Long transInterest) {
    this.transInterest = transInterest;
  }

  /**
   * 每期还款费用 */
  public Long getTransFee() {
    return this.transFee;
  }

  /**
   * 每期还款费用 */
  public void setTransFee(Long transFee) {
    this.transFee = transFee;
  }

  /**
   * 剩余本金 */
  public Long getRemainPrincipal() {
    return this.remainPrincipal;
  }

  /**
   * 剩余本金 */
  public void setRemainPrincipal(Long remainPrincipal) {
    this.remainPrincipal = remainPrincipal;
  }

  /**
   * 还款时间 */
  public Date getRepayTime() {
    return this.repayTime;
  }

  /**
   * 还款时间 */
  public void setRepayTime(Date repayTime) {
    this.repayTime = repayTime;
  }

  /**
   * 计息开始时间 */
  public Date getStartTime() {
    return this.startTime;
  }

  /**
   * 计息开始时间 */
  public void setStartTime(Date startTime) {
    this.startTime = startTime;
  }

  /**
   * 计息结束时间 */
  public Date getEndTime() {
    return this.endTime;
  }

  /**
   * 计息结束时间 */
  public void setEndTime(Date endTime) {
    this.endTime = endTime;
  }

  /**
   * 试算编号 */
  public String getTrialNo() {
    return this.trialNo;
  }

  /**
   * 试算编号 */
  public void setTrialNo(String trialNo) {
    this.trialNo = trialNo;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy