优化项目结构
This commit is contained in:
@ -20,7 +20,7 @@ public class YxArticle implements Serializable {
|
||||
|
||||
/** 文章管理ID */
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||||
|
||||
@Column(name = "id")
|
||||
private Integer id;
|
||||
|
||||
@ -124,4 +124,4 @@ public class YxArticle implements Serializable {
|
||||
public void copy(YxArticle source){
|
||||
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -20,7 +20,7 @@ public class YxWechatReply implements Serializable {
|
||||
|
||||
/** 微信关键字回复id */
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||||
|
||||
@Column(name = "id")
|
||||
private Integer id;
|
||||
|
||||
|
@ -20,7 +20,7 @@ public class YxWechatTemplate implements Serializable {
|
||||
|
||||
/** 模板id */
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||||
|
||||
@Column(name = "id")
|
||||
private Integer id;
|
||||
|
||||
@ -63,4 +63,4 @@ public class YxWechatTemplate implements Serializable {
|
||||
public void copy(YxWechatTemplate source){
|
||||
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user