|
|
@@ -0,0 +1,41 @@ |
|
|
|
package com.ningdatech.pmapi.tag.entity; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName; |
|
|
|
import java.io.Serializable; |
|
|
|
import java.time.LocalDateTime; |
|
|
|
import io.swagger.annotations.ApiModel; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
/** |
|
|
|
* <p> |
|
|
|
* |
|
|
|
* </p> |
|
|
|
* |
|
|
|
* @author Liuxinxin |
|
|
|
* @since 2023-02-22 |
|
|
|
*/ |
|
|
|
@Data |
|
|
|
@TableName("meta_tag") |
|
|
|
@ApiModel(value = "MetaTag对象", description = "") |
|
|
|
public class MetaTag implements Serializable { |
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
|
|
|
|
private Long id; |
|
|
|
|
|
|
|
private LocalDateTime createOn; |
|
|
|
|
|
|
|
private LocalDateTime updateOn; |
|
|
|
|
|
|
|
private String tagName; |
|
|
|
|
|
|
|
private Long tagLevel; |
|
|
|
|
|
|
|
private String parentCode; |
|
|
|
|
|
|
|
private String tagType; |
|
|
|
|
|
|
|
private String tagCode; |
|
|
|
|
|
|
|
} |