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.

42 lines
790 B

package com.epmet.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.epmet.commons.mybatis.entity.BaseEpmetEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* 居民租房信息
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2022-11-25
*/
@Data
@EqualsAndHashCode(callSuper=false)
@TableName("ic_resi_rent_contract_info")
public class IcResiRentContractInfoEntity extends BaseEpmetEntity {
private static final long serialVersionUID = 1L;
/**
* 客户Id customer.id
*/
private String customerId;
/**
* 主表Id
*/
private String icResiUser;
/**
* 合同开始日期
*/
private String contractStartDate;
/**
* 合同结束日期
*/
private String contractEndDate;
}