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.

41 lines
678 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
*/
private String firstCategoryName;
/**
* 2
*/
private String secondCategoryName;
/**
*
*/
private String keyword;
/**
* 0- 1-
*/
private Integer fileType;
/**
*
*/
private byte[] content;
}