| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- package com.usoftchina.saas.document.dto;
- import com.usoftchina.saas.base.dto.CommonBaseDTO;
- import java.io.Serializable;
- /**
- * @Author chenwei
- * @Date 2019/01/04
- */
- public class CurrencyDTO extends CommonBaseDTO implements Serializable {
- private String cr_name;
- private Double cr_rate;
- private Long cr_standard;
- public String getCr_name() {
- return cr_name;
- }
- public void setCr_name(String cr_name) {
- this.cr_name = cr_name;
- }
- public Double getCr_rate() {
- return cr_rate;
- }
- public void setCr_rate(Double cr_rate) {
- this.cr_rate = cr_rate;
- }
- public Long getCr_standard() {
- return cr_standard;
- }
- public void setCr_standard(Long cr_standard) {
- this.cr_standard = cr_standard;
- }
- }
|