日照智慧社区接口服务
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.

64 lines
1.0 KiB

2 years ago
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;
/**
* 日照贫困人员慰问记录
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2023-06-17
*/
@Data
@EqualsAndHashCode(callSuper=false)
@TableName("poverty_condole")
public class PovertyCondoleEntity extends BaseEpmetEntity {
private static final long serialVersionUID = 1L;
/**
* 贫困人员ID
*/
private String povertyId;
/**
* 居民ID
*/
private String resiUserId;
/**
* 贫困人员姓名
*/
private String userName;
/**
* 慰问时间
*/
private Date condoleTime;
/**
* 慰问人员多人以,相隔
*/
private String condoleStaff;
/**
* 慰问内容
*/
private String content;
/**
* 详细描述
*/
private String remark;
/**
* 组织ID路径
*/
private String orgIdPath;
2 years ago
}