You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
726 B
Java

5 years ago
package com.jingcheng.cms.model;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import lombok.EqualsAndHashCode;
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("article")
public class Article extends BaseEntity{
/**
*
*/
private String title;
/**
* 1
*/
5 years ago
private Long firstCategory;
5 years ago
/**
* 2
*/
5 years ago
private Long secondCategory;
5 years ago
/**
*
*/
private String keyword;
/**
* 0- 1-
*/
private Integer fileType;
/**
*
*/
5 years ago
private String content;
5 years ago
/**
*
*/
private String describe;
5 years ago
}