package org.springblade.modules.property.dto;
|
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
import org.springblade.modules.property.entity.PropertyChargeRecord;
|
|
/**
|
* 缴费记录表对象 jczz_property_charge_record
|
*
|
* @author ${context.author}
|
* @date 2024-04-07 15:44:09
|
*/
|
@ApiModel(value = "PropertyChargeRecordDTO对象")
|
@Data
|
public class PropertyChargeRecordDTO extends PropertyChargeRecord
|
{
|
|
}
|