Skip to content

Instantly share code, notes, and snippets.

@mohashari
Created March 27, 2018 03:27
Show Gist options
  • Select an option

  • Save mohashari/273631358fe851c056d6a4fe0d79bafb to your computer and use it in GitHub Desktop.

Select an option

Save mohashari/273631358fe851c056d6a4fe0d79bafb to your computer and use it in GitHub Desktop.
package com.nostratech.project.vo;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import java.math.BigDecimal;
@Data
public class SimulasiAmanahVO {
@JsonProperty(value = "tipe_kendaraan")
private String tipeKendaraan;
@JsonProperty(value = "harga_pasar_kendaraan")
private BigDecimal hargaPasarKendaraan;
@JsonProperty(value = "uang_muka_kendaraan")
private BigDecimal uangMukaKendaraan;
@JsonProperty(value = "max_marhun_bih")
private BigDecimal maxMarhunBih;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment