exam-week2/yuan-common/src/main/java/com/bwie/common/domain/Notification.java

38 lines
634 B
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.bwie.common.domain;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* @Author蓬叁
* @Packagecom.bwie.common.domain
* @Projectmaven-week2-exam
* @nameNotification
* @Date2024/7/30 下午2:11
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
//通知
public class Notification {
/**
* 账号
*/
private String userName ;
/**
* 申请时间
*/
private String loanApprovalDate ;
/**
* 房屋名称
*/
private String houseName ;
/**
* 住房周期
*/
private String housingCycleName ;
}