浏览代码

--update column join to isJoin;

zzy.zhiyuan.foxmail 8 年之前
父节点
当前提交
3d3878b830

+ 1 - 1
src/main/java/com/ekexiu/portal/dao/OrgDao.java

33
	
33
	
34
	@UpdateWith
34
	@UpdateWith
35
	@From(Organization.class)
35
	@From(Organization.class)
36
	int updateJoin(Connection con,String id,String join)throws SQLException;
36
	int updateIsJoin(Connection con,String id,String isJoin)throws SQLException;
37
	
37
	
38
	@UpdateWith
38
	@UpdateWith
39
	@From(Organization.class)
39
	@From(Organization.class)

+ 5 - 5
src/main/java/com/ekexiu/portal/po/Organization.java

41
	/**
41
	/**
42
	 * 是否入驻
42
	 * 是否入驻
43
	 */
43
	 */
44
	private String join;
44
	private String isJoin;
45
	/**
45
	/**
46
	 * 认证状态
46
	 * 认证状态
47
	 */
47
	 */
107
		this.qualification = qualification;
107
		this.qualification = qualification;
108
	}
108
	}
109
	@Column(value=DE.SingleChar,renewable=false)
109
	@Column(value=DE.SingleChar,renewable=false)
110
	public String getJoin() {
111
		return join;
110
	public String getIsJoin() {
111
		return isJoin;
112
	}
112
	}
113
	public void setJoin(String join) {
114
		this.join = join;
113
	public void setIsJoin(String isJoin) {
114
		this.isJoin = isJoin;
115
	}
115
	}
116
	@Column(value=DE.SingleChar,renewable=false)
116
	@Column(value=DE.SingleChar,renewable=false)
117
	public String getAuthStatus() {
117
	public String getAuthStatus() {