咨询等功能完善
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
package com.ruoyi.common.core.domain.entity;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 咨询列对象 consult_info
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2025-08-14
|
||||
*/
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Data
|
||||
public class ConsultInfo extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** $column.columnComment */
|
||||
private String id;
|
||||
|
||||
/** 文章名称 */
|
||||
@Excel(name = "文章名称")
|
||||
private String title;
|
||||
|
||||
/** 子标题 */
|
||||
@Excel(name = "子标题")
|
||||
private String subTitle;
|
||||
|
||||
/** 封面图片 */
|
||||
@Excel(name = "封面图片")
|
||||
private String bannerImg;
|
||||
|
||||
/** 轮播图片 */
|
||||
@Excel(name = "轮播图片")
|
||||
private String rotaImg;
|
||||
|
||||
/** 正文 */
|
||||
@Excel(name = "正文")
|
||||
private String content;
|
||||
|
||||
/** 作者 */
|
||||
@Excel(name = "作者")
|
||||
private String author;
|
||||
|
||||
/** 1 删除 */
|
||||
@Excel(name = "1 删除")
|
||||
private Long isDel;
|
||||
|
||||
}
|
||||
@@ -62,4 +62,7 @@ public class ShareInfo extends BaseEntity
|
||||
|
||||
private String musicAuthor;
|
||||
|
||||
|
||||
private String musicType;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user