This commit is contained in:
lxyer 2018-01-07 16:10:46 +08:00
parent 9db8e5b2e8
commit b24d4be809
2 changed files with 0 additions and 36 deletions

View File

@ -8,7 +8,6 @@ public class E {
public enum DynamicAttr {
//table,id_k,gk, cate
NEWS("dyna_attr", "contentId", "tid", 1),
PRODUCTION("dyna_attr", "contentId", "tid", 2),
USER("dyna_attr", "userId", "tid", 3)
;
private String table;

View File

@ -1,35 +0,0 @@
package com.lxyer.config;
/**
* Created by JUECHENG at 2018/1/7 14:35.
*/
public class F {
public enum DynamicAttr {
//table,id_k,gk, cate
NEWS("dyna_attr", "contentId", "tid", 1),
USER("dyna_attr", "userId", "tid", 2)
;
private String table;
private String id_k;
private String gk;
private int cate;
DynamicAttr(String table, String id_k, String gk, int cate) {
this.table = table;
this.id_k = id_k;
this.gk = gk;
this.cate = cate;
}
public String table(){
return this.table;
}
public String id_k(){
return this.id_k;
}
public String gk(){
return this.gk;
}
public int getCate() {
return cate;
}
}
}