This commit is contained in:
2019-03-18 17:10:52 +08:00
parent e057d613b9
commit 7ef48dfc3e
37 changed files with 827 additions and 258 deletions

View File

@@ -55,7 +55,7 @@ public abstract class Doc<T extends Doc> {
return (V)attr.get(k);
}
public T setShows(String... show) {
/*public T setShows(String... show) {
if (_shows == null) {
_shows = new HashSet<>();
}
@@ -63,15 +63,15 @@ public abstract class Doc<T extends Doc> {
_shows.add(s);
}
return (T) this;
}
}*/
public Set<String> get_Shows() {
return _shows;
}
public void set_Shows(Set<String> shows) {
/*public void set_Shows(Set<String> shows) {
this._shows = shows;
}
}*/
public T setOrder(String col, int desc) {
if (_order == null) {