Created
March 27, 2018 03:27
-
-
Save mohashari/273631358fe851c056d6a4fe0d79bafb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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