package com.gkhy.safePlatform.targetDuty.entity;
|
|
import java.sql.Timestamp;
|
import com.gkhy.safePlatform.targetDuty.entity.BaseDomain;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
/**
|
* 目标分类(TargetType)表实体类
|
*
|
* @author xurui
|
* @since 2022-08-29 08:43:13
|
*/
|
@SuppressWarnings("serial")
|
@TableName("target_type")
|
public class TargetType extends BaseDomain {
|
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
//分类名称
|
private String typeName;
|
|
public String getTypeName() {
|
return typeName;
|
}
|
|
public void setTypeName(String typeName) {
|
this.typeName = typeName;
|
}
|
//说明
|
private String memo;
|
|
public String getMemo() {
|
return memo;
|
}
|
|
public void setMemo(String memo) {
|
this.memo = memo;
|
}
|
//是否删除 0:未删除 1:删除
|
private Integer delFlag;
|
|
public Integer getDelFlag() {
|
return delFlag;
|
}
|
|
public void setDelFlag(Integer delFlag) {
|
this.delFlag = delFlag;
|
}
|
|
}
|