标签儿管理代码框架
This commit is contained in:
61
src/main/java/com/rj/entity/IndustryTags.java
Normal file
61
src/main/java/com/rj/entity/IndustryTags.java
Normal file
@@ -0,0 +1,61 @@
|
||||
package com.rj.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import java.time.LocalDateTime;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import java.io.Serializable;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 行业标签表
|
||||
* </p>
|
||||
*
|
||||
* @author Auto Generated
|
||||
* @since 2025-01-29
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@TableName("industry_tags")
|
||||
@Schema(description = "行业标签表")
|
||||
public class IndustryTags implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Schema(description = "UUID主键")
|
||||
@TableId("id")
|
||||
private String id;
|
||||
|
||||
@Schema(description = "所属行业")
|
||||
@TableField("industry")
|
||||
private String industry;
|
||||
|
||||
@Schema(description = "标签分类")
|
||||
@TableField("tag_type")
|
||||
private String tagType;
|
||||
|
||||
@Schema(description = "标签名称")
|
||||
@TableField("tag_name")
|
||||
private String tagName;
|
||||
|
||||
@Schema(description = "标签详情")
|
||||
@TableField("tag_detail")
|
||||
private String tagDetail;
|
||||
|
||||
@Schema(description = "备注")
|
||||
@TableField("remark")
|
||||
private String remark;
|
||||
|
||||
@Schema(description = "创建时间")
|
||||
@TableField("create_time")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
@Schema(description = "修改时间")
|
||||
@TableField("update_time")
|
||||
private LocalDateTime updateTime;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user