Эх сурвалжийг харах

git-svn-id: https://192.168.57.71/svn/jsgkj@575 931142cf-59ea-a443-aa0e-51397b428577

xt_yuanxd 9 жил өмнө
parent
commit
5d7e8ab348

+ 7 - 0
gkaqv2/trunk/modules/frame/src/main/java/com/xt/js/gkaq/frame/mappers/GroupModelMapper.java

@@ -0,0 +1,7 @@
+package com.xt.js.gkaq.frame.mappers;
+
+import com.xt.js.gkaq.common.BaseMapper;
+import com.xt.js.gkaq.frame.model.GroupModel;
+
+public interface GroupModelMapper extends BaseMapper<GroupModel> {
+}

+ 7 - 0
gkaqv2/trunk/modules/frame/src/main/java/com/xt/js/gkaq/frame/mappers/OrgModelMapper.java

@@ -0,0 +1,7 @@
+package com.xt.js.gkaq.frame.mappers;
+
+import com.xt.js.gkaq.common.BaseMapper;
+import com.xt.js.gkaq.frame.model.OrgModel;
+
+public interface OrgModelMapper extends BaseMapper<OrgModel> {
+}

+ 7 - 0
gkaqv2/trunk/modules/frame/src/main/java/com/xt/js/gkaq/frame/mappers/RoleModelMapper.java

@@ -0,0 +1,7 @@
+package com.xt.js.gkaq.frame.mappers;
+
+import com.xt.js.gkaq.common.BaseMapper;
+import com.xt.js.gkaq.frame.model.RoleModel;
+
+public interface RoleModelMapper extends BaseMapper<RoleModel> {
+}

+ 7 - 0
gkaqv2/trunk/modules/frame/src/main/java/com/xt/js/gkaq/frame/mappers/UserGroupModelMapper.java

@@ -0,0 +1,7 @@
+package com.xt.js.gkaq.frame.mappers;
+
+import com.xt.js.gkaq.common.BaseMapper;
+import com.xt.js.gkaq.frame.model.UserGroupModel;
+
+public interface UserGroupModelMapper extends BaseMapper<UserGroupModel> {
+}

+ 73 - 0
gkaqv2/trunk/modules/frame/src/main/java/com/xt/js/gkaq/frame/model/GroupModel.java

@@ -0,0 +1,73 @@
+package com.xt.js.gkaq.frame.model;
+
+public class GroupModel {
+    private String id;
+
+    private String org;
+
+    private String role;
+
+    private String remark;
+
+    private Object createTime;
+
+    private Object updateTime;
+
+    private String state;
+
+    public String getId() {
+        return id;
+    }
+
+    public void setId(String id) {
+        this.id = id == null ? null : id.trim();
+    }
+
+    public String getOrg() {
+        return org;
+    }
+
+    public void setOrg(String org) {
+        this.org = org == null ? null : org.trim();
+    }
+
+    public String getRole() {
+        return role;
+    }
+
+    public void setRole(String role) {
+        this.role = role == null ? null : role.trim();
+    }
+
+    public String getRemark() {
+        return remark;
+    }
+
+    public void setRemark(String remark) {
+        this.remark = remark == null ? null : remark.trim();
+    }
+
+    public Object getCreateTime() {
+        return createTime;
+    }
+
+    public void setCreateTime(Object createTime) {
+        this.createTime = createTime;
+    }
+
+    public Object getUpdateTime() {
+        return updateTime;
+    }
+
+    public void setUpdateTime(Object updateTime) {
+        this.updateTime = updateTime;
+    }
+
+    public String getState() {
+        return state;
+    }
+
+    public void setState(String state) {
+        this.state = state == null ? null : state.trim();
+    }
+}

+ 73 - 0
gkaqv2/trunk/modules/frame/src/main/java/com/xt/js/gkaq/frame/model/OrgModel.java

@@ -0,0 +1,73 @@
+package com.xt.js.gkaq.frame.model;
+
+public class OrgModel {
+    private String id;
+
+    private Object name;
+
+    private String orgType;
+
+    private Object remark;
+
+    private String pid;
+
+    private Short sortno;
+
+    private String code;
+
+    public String getId() {
+        return id;
+    }
+
+    public void setId(String id) {
+        this.id = id == null ? null : id.trim();
+    }
+
+    public Object getName() {
+        return name;
+    }
+
+    public void setName(Object name) {
+        this.name = name;
+    }
+
+    public String getOrgType() {
+        return orgType;
+    }
+
+    public void setOrgType(String orgType) {
+        this.orgType = orgType == null ? null : orgType.trim();
+    }
+
+    public Object getRemark() {
+        return remark;
+    }
+
+    public void setRemark(Object remark) {
+        this.remark = remark;
+    }
+
+    public String getPid() {
+        return pid;
+    }
+
+    public void setPid(String pid) {
+        this.pid = pid == null ? null : pid.trim();
+    }
+
+    public Short getSortno() {
+        return sortno;
+    }
+
+    public void setSortno(Short sortno) {
+        this.sortno = sortno;
+    }
+
+    public String getCode() {
+        return code;
+    }
+
+    public void setCode(String code) {
+        this.code = code == null ? null : code.trim();
+    }
+}

+ 105 - 0
gkaqv2/trunk/modules/frame/src/main/java/com/xt/js/gkaq/frame/model/RoleModel.java

@@ -0,0 +1,105 @@
+package com.xt.js.gkaq.frame.model;
+
+import java.math.BigDecimal;
+
+public class RoleModel {
+    private String id;
+
+    private String name;
+
+    private String code;
+
+    private String remark;
+
+    private String status;
+
+    private String phone;
+
+    private Object createTime;
+
+    private Object updateTime;
+
+    private String state;
+
+    private BigDecimal sortno;
+
+    public String getId() {
+        return id;
+    }
+
+    public void setId(String id) {
+        this.id = id == null ? null : id.trim();
+    }
+
+    public String getName() {
+        return name;
+    }
+
+    public void setName(String name) {
+        this.name = name == null ? null : name.trim();
+    }
+
+    public String getCode() {
+        return code;
+    }
+
+    public void setCode(String code) {
+        this.code = code == null ? null : code.trim();
+    }
+
+    public String getRemark() {
+        return remark;
+    }
+
+    public void setRemark(String remark) {
+        this.remark = remark == null ? null : remark.trim();
+    }
+
+    public String getStatus() {
+        return status;
+    }
+
+    public void setStatus(String status) {
+        this.status = status == null ? null : status.trim();
+    }
+
+    public String getPhone() {
+        return phone;
+    }
+
+    public void setPhone(String phone) {
+        this.phone = phone == null ? null : phone.trim();
+    }
+
+    public Object getCreateTime() {
+        return createTime;
+    }
+
+    public void setCreateTime(Object createTime) {
+        this.createTime = createTime;
+    }
+
+    public Object getUpdateTime() {
+        return updateTime;
+    }
+
+    public void setUpdateTime(Object updateTime) {
+        this.updateTime = updateTime;
+    }
+
+    public String getState() {
+        return state;
+    }
+
+    public void setState(String state) {
+        this.state = state == null ? null : state.trim();
+    }
+
+    public BigDecimal getSortno() {
+        return sortno;
+    }
+
+    public void setSortno(BigDecimal sortno) {
+        this.sortno = sortno;
+    }
+}

+ 63 - 0
gkaqv2/trunk/modules/frame/src/main/java/com/xt/js/gkaq/frame/model/UserGroupModel.java

@@ -0,0 +1,63 @@
+package com.xt.js.gkaq.frame.model;
+
+public class UserGroupModel {
+    private Object id;
+
+    private Object groupId;
+
+    private Object userId;
+
+    private Object createTime;
+
+    private Object updateTime;
+
+    private String state;
+
+    public Object getId() {
+        return id;
+    }
+
+    public void setId(Object id) {
+        this.id = id;
+    }
+
+    public Object getGroupId() {
+        return groupId;
+    }
+
+    public void setGroupId(Object groupId) {
+        this.groupId = groupId;
+    }
+
+    public Object getUserId() {
+        return userId;
+    }
+
+    public void setUserId(Object userId) {
+        this.userId = userId;
+    }
+
+    public Object getCreateTime() {
+        return createTime;
+    }
+
+    public void setCreateTime(Object createTime) {
+        this.createTime = createTime;
+    }
+
+    public Object getUpdateTime() {
+        return updateTime;
+    }
+
+    public void setUpdateTime(Object updateTime) {
+        this.updateTime = updateTime;
+    }
+
+    public String getState() {
+        return state;
+    }
+
+    public void setState(String state) {
+        this.state = state == null ? null : state.trim();
+    }
+}

+ 0 - 90
gkaqv2/trunk/modules/frame/src/main/java/com/xt/js/gkaq/frame/role/RoleModel.java

@@ -1,90 +0,0 @@
-package com.xt.js.gkaq.frame.role;
-
-/**
- * 角色对象实现
- * 
- * @author 袁晓冬
- *
- */
-public class RoleModel {
-	/** ID */
-	private String id;
-	/** 姓名 */
-	private String name;
-	/** 角色编码 */
-	private String code;
-	/** 排序号 */
-	private int sortno;
-	/** 记录状态 */
-	private Boolean valid;
-
-	/**
-	 * 角色编码
-	 */
-	public String getCode() {
-		return code;
-	}
-
-	/*
-	 * (non-Javadoc)
-	 * 
-	 * @see com.xtframe.web.system.entity.User#getId()
-	 */
-	public String getId() {
-		return id;
-	}
-
-	public String getName() {
-		return name;
-	}
-
-	/**
-	 * 排序号
-	 * 
-	 */
-	public int getSortno() {
-		return sortno;
-	}
-
-	public Boolean getValid() {
-		return valid;
-	}
-
-	public void setCode(String code) {
-		this.code = code;
-	}
-
-	/*
-	 * (non-Javadoc)
-	 * 
-	 * @see com.xtframe.web.system.entity.User#setId(java.lang.String)
-	 */
-	public void setId(String id) {
-		this.id = id;
-	}
-
-	/*
-	 * (non-Javadoc)
-	 * 
-	 * @see com.xtframe.web.system.entity.User#setName(java.lang.String)
-	 */
-	public void setName(String name) {
-		this.name = name;
-	}
-
-	/**
-	 * 排序号
-	 */
-	public void setSortno(int sortno) {
-		this.sortno = sortno;
-	}
-
-	/*
-	 * (non-Javadoc)
-	 * 
-	 * @see com.xtframe.web.system.entity.User#setValid(java.lang.Boolean)
-	 */
-	public void setValid(Boolean valid) {
-		this.valid = valid;
-	}
-}

+ 0 - 5
gkaqv2/trunk/modules/frame/src/main/java/com/xt/js/gkaq/frame/role/RoleService.java

@@ -1,5 +0,0 @@
-package com.xt.js.gkaq.frame.role;
-
-public interface RoleService {
-
-}

+ 8 - 0
gkaqv2/trunk/modules/frame/src/main/java/com/xt/js/gkaq/frame/service/RoleService.java

@@ -0,0 +1,8 @@
+package com.xt.js.gkaq.frame.service;
+
+import com.xt.js.gkaq.common.BaseService;
+import com.xt.js.gkaq.frame.model.RoleModel;
+
+public interface RoleService extends BaseService<RoleModel> {
+
+}