add system operator agent

This commit is contained in:
Sola
2015-12-12 23:45:16 +08:00
parent 19f68c1e33
commit abb8891152
6 changed files with 67 additions and 2 deletions

View File

@@ -32,10 +32,15 @@ public class Operator {
private String name;
@Column(name = "access", nullable = false, insertable = false, updatable = false)
private Integer access;
@Column(name = "wechat", nullable = false, insertable = false, updatable = false)
@Column(name = "wechat", insertable = false, updatable = false)
private String wechat;
private Integer block;
private Integer week;
private String password;
//System Accounts
public static Operator USER_SELF;
public static Operator ADMIN;
}