Week02/bwie-common/src/main/java/com/bwie/common/domain/House.java

24 lines
420 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.Data;
import java.math.BigDecimal;
/**
* @Author张腾
* @Packagecom.bwie.common.domain
* @ProjectZg6_week02
* @nameHouse
* @Date2024/7/30 10:15
*/
@Data
public class House {
private Integer houseId;
private String houseName;
private Integer typeId;
private String area;
private String housePic;
private Double rent;
}