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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.entity.vo ;
import com.entity.StoreupEntity ;
import com.baomidou.mybatisplus.annotations.TableName ;
import java.util.Date ;
import org.springframework.format.annotation.DateTimeFormat ;
import com.fasterxml.jackson.annotation.JsonFormat ;
import java.io.Serializable ;
/**
* 收藏表
* 手机端接口返回实体辅助类
* (主要作用去除一些不必要的字段)
* @author
* @email
* @date 2021-03-20 21:35:41
*/
public class StoreupVO implements Serializable {
private static final long serialVersionUID = 1L ;
/**
* 收藏id
*/
private Long refid ;
/**
* 表名
*/
private String tablename ;
/**
* 收藏名称
*/
private String name ;
/**
* 收藏图片
*/
private String picture ;
/**
* 设置: 收藏id
*/
public void setRefid ( Long refid ) {
this . refid = refid ;
}
/**
* 获取: 收藏id
*/
public Long getRefid ( ) {
return refid ;
}
/**
* 设置:表名
*/
public void setTablename ( String tablename ) {
this . tablename = tablename ;
}
/**
* 获取:表名
*/
public String getTablename ( ) {
return tablename ;
}
/**
* 设置:收藏名称
*/
public void setName ( String name ) {
this . name = name ;
}
/**
* 获取:收藏名称
*/
public String getName ( ) {
return name ;
}
/**
* 设置:收藏图片
*/
public void setPicture ( String picture ) {
this . picture = picture ;
}
/**
* 获取:收藏图片
*/
public String getPicture ( ) {
return picture ;
}
}