Commit c448dc33 by hulei

新增XRT字段

parent 0102cf11
......@@ -4,6 +4,8 @@ import com.brilliance.mda.runtime.mda.util.Decimals;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Data;
import lombok.Getter;
import lombok.Setter;
import java.math.BigDecimal;
import java.util.Date;
......@@ -15,7 +17,8 @@ import static com.brilliance.mda.runtime.mda.Constants.NULLSTR;
/**
* TABLE:xrt:XRT - Exchange Rate
*/
@Data
@Getter
@Setter
@JsonIgnoreProperties(ignoreUnknown = true)
public class Xrt {
......@@ -66,9 +69,14 @@ public class Xrt {
//Buying Rate 1
private BigDecimal buy1rat = Decimals.ZERO_SCALE6;
//Buying Rate 1
private BigDecimal sel2rat = Decimals.ZERO_SCALE6;
//Entity Group of Exchange Rate
private String etgextkey = NULLSTR;
//Time of XRT
private String xrttim = NULLSTR;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment