You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
540 B
31 lines
540 B
package com.epmet.dto;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* @Author zxc
|
|
* @DateTime 2021/11/3 10:24 上午
|
|
* @DESC
|
|
*/
|
|
@Data
|
|
public class FinancialSituationDTO implements Serializable {
|
|
|
|
private static final long serialVersionUID = -3984106138099267996L;
|
|
|
|
/**
|
|
* 月收入
|
|
*/
|
|
private String monthlyIncome;
|
|
|
|
/**
|
|
* 退休金额
|
|
*/
|
|
private String retirementAmount;
|
|
|
|
public FinancialSituationDTO() {
|
|
this.monthlyIncome = "";
|
|
this.retirementAmount = "";
|
|
}
|
|
}
|
|
|