package org.dromara.demo.domain;
|
|
import org.dromara.common.mybatis.core.domain.BaseEntity;
|
import com.baomidou.mybatisplus.annotation.*;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import java.util.Date;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import org.dromara.common.tenant.core.TenantEntity;
|
import org.dromara.system.domain.SysUser;
|
|
import java.io.Serial;
|
|
/**
|
* 【请填写功能名称】对象 target_manage
|
*
|
* @author Lion Li
|
* @date 2024-02-20
|
*/
|
@Data
|
@TableName("target_manage")
|
public class TargetManage {
|
|
@Serial
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 是否启用状态 0 未启用 1已启用
|
*/
|
private Integer tgStatus;
|
|
/**
|
* 1 区县 2 街道 3 区县以及街道
|
*/
|
private Integer tgType;
|
|
/**
|
* 创建时间
|
*/
|
private Date tgCreateTime;
|
|
/**
|
主键id
|
*/
|
@TableId(value = "tg_id",type = IdType.AUTO)
|
private Long tgId;
|
|
/**
|
*创建人的id
|
*/
|
private Long userId;
|
|
/**
|
* 指标名称
|
*/
|
private String tgName;
|
@TableField(exist = false)
|
private SysUser sysUser;
|
|
|
}
|