package org.springblade.modules.property.entity; import com.baomidou.mybatisplus.annotation.TableName; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModel; import lombok.Data; import org.springblade.core.mp.base.BaseEntity; import org.springframework.format.annotation.DateTimeFormat; import java.util.Date; @Data @TableName("jczz_property_charge_record") @ApiModel(value = "PropertyChargeRecord", description = "物业缴费记录") public class PropertyChargeRecord extends BaseEntity { //物业公司的deptId private String propertyId; //缴费项id private String chargeId; //编号 private String no; //付款人id private String payUser; //付款时间 @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date payTime; //缴费方式 private String payFunc; //付款金额 private String payPrice; //付款房屋的houseCode private String payHouse; //缴费内容 private String payContent; }