廖师兄springboot微信点餐开发中相关注解使用解释
Posted Mark-luo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了廖师兄springboot微信点餐开发中相关注解使用解释相关的知识,希望对你有一定的参考价值。
package com.imooc.dataobject;
import lombok.Data;
import org.hibernate.annotations.DynamicUpdate;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import java.util.Date;
/**
* 类目
* Created by 廖师兄
* 2017-05-07 14:30
*/
@Entity //映射数据库
@DynamicUpdate //时间自动更新
@Data // 省略set get ,需要下载lombok插件
public class ProductCategory {
/** 类目id. */
@Id
@GeneratedValue
private Integer categoryId;
/** 类目名字. */
private String categoryName;
/** 类目编号. */
private Integer categoryType;
private Date createTime;
private Date updateTime;
public ProductCategory() {
}
public ProductCategory(String categoryName, Integer categoryType) {
this.categoryName = categoryName;
this.categoryType = categoryType;
}
}
以上是关于廖师兄springboot微信点餐开发中相关注解使用解释的主要内容,如果未能解决你的问题,请参考以下文章