1234567891011121314151617181920212223242526272829303132333435363738 |
- package cn.cslg.pas.domain;
- import cn.cslg.pas.common.model.BaseEntity;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Data;
- /**
- * <p>
- * 专利信息标签表
- * </p>
- *
- * @author 王岩
- * @since 2022-03-07
- */
- @Data
- @TableName("os_patent_label")
- public class PatentLabel extends BaseEntity<PatentLabel> {
- /**
- * 标签名称
- */
- @TableField("tagname")
- private String name;
- /**
- * 专利ID
- */
- @TableField("pid")
- private Integer patentId;
- /**
- * 专题库
- */
- @TableField("tid")
- private Integer projectId;
- }
|