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.

45 lines
801 B

package com.epmet.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.epmet.commons.mybatis.entity.BaseEpmetEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.util.Date;
/**
* 居民定时任务log
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2023-05-18
*/
@Data
@EqualsAndHashCode(callSuper=false)
@TableName("ic_resi_user_task_log")
public class IcResiUserTaskLogEntity extends BaseEpmetEntity {
private static final long serialVersionUID = 1L;
/**
* 客户Id customer.id
*/
private String customerId;
/**
* 0:正常数据 1:特殊数据
*/
private Integer dataType;
/**
* 数据数量
*/
private Integer dataCount;
/**
* 婚姻hunyin
*/
private String type;
}