You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
452 B
21 lines
452 B
package com.gk.study.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.*;
|
|
import lombok.Data;
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
import java.io.Serializable;
|
|
import java.sql.Date;
|
|
|
|
@Data
|
|
@TableName("b_classification")
|
|
public class Classification implements Serializable {
|
|
@TableId(value = "id",type = IdType.AUTO)
|
|
public Long id;
|
|
@TableField
|
|
public String title;
|
|
@TableField
|
|
public String createTime;
|
|
|
|
}
|