package cn.ycmit.domain;
import java.util.Date;
/**
* 问答分类对象 qa_category
*
* @author ycmit
* @date 2022-05-09
*/
public class QaCategory
{
private static final long serialVersionUID = 1L;
/** 分类ID */
private Long categoryId;
/** 标题 */
private String title;
/** 排序 */
private Integer sort;
/**
* 创建者
*/
private String createBy;
/**
* 创建时间
*/
private Date createTime;
/**
* 更新者
*/
private String updateBy;
/**
* 更新时间
*/
private Date updateTime;
public void setCategoryId(Long categoryId)
{
this.categoryId = categoryId;
}
public Long getCategoryId()
{
return categoryId;
}
public void setTitle(String title)
{
this.title = title;
}
public String getTitle()
{
return title;
}
public void setSort(Integer sort)
{
this.sort = sort;
}
public Integer getSort()
{
return sort;
}
public String getCreateBy() {
return createBy;
}
public void setCreateBy(String createBy) {
this.createBy = createBy;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public String getUpdateBy() {
return updateBy;
}
public void setUpdateBy(String updateBy) {
this.updateBy = updateBy;
}
public Date getUpdateTime() {
return updateTime;
}
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
@Override
public String toString() {
return "QaCategory{" +
"categoryId=" + categoryId +
", title='" + title + '\'' +
", sort=" + sort +
", createBy='" + createBy + '\'' +
", createTime=" + createTime +
", updateBy='" + updateBy + '\'' +
", updateTime=" + updateTime +
'}';
}
}

ITKEY_
- 粉丝: 5w+
最新资源
- 微信小程序--二维码生成器.zip
- 微信小程序 代码提示插件.zip
- 《微信小程序入门与实践》一书小程序源代码.zip
- 微信小程序demo,微信小程序开发教程,小程序快速入门,新版SDK DEMO请查看.zip
- 微信小程序签字板.zip
- 微信小程序,小程序商城,商城,springboot框架,vue管理系统,java后台.zip
- 又拍云微信小程序 SDK.zip
- 前端开源微信电商小程序,拼团+砍价+分销.zip
- yii2 ( PHP ) fecmall(fecshop) core code used for ecommerce s
- 微信小程序 Sports News(体育新闻).zip
- 微信小程序自定义组件.zip
- 微信小程序 蓝牙实现(1).zip
- 适用于微信小程序的微信开发者工具 Linux移植版.zip
- We重邮 - 微信小程序(2).zip
- ONE·一个_图文 微信小程序_开源代码.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈



评论0