Commit 8a11e77464fefd072247fba1a24340f747ee21a8
1 parent
1c27ff1212
Exists in
master
角色添加groupordid
Showing 2 changed files with 7 additions and 1 deletions
parent/base.common/src/main/java/com/lyms/base/common/dao/role/RolesMapper.xml
View file @
8a11e77
| ... | ... | @@ -10,6 +10,7 @@ |
| 10 | 10 | <result column="REMARKS" property="remarks" /> |
| 11 | 11 | <result column="SHORT_CODE" property="shortCode" /> |
| 12 | 12 | <result column="ORG_ID" property="orgId" /> |
| 13 | + <result column="GROUPORG_ID" property="grouporgId" /> | |
| 13 | 14 | <result column="CREATE_ID" property="createId" /> |
| 14 | 15 | <result column="CREATE_TIME" property="createTime" /> |
| 15 | 16 | <result column="MODIFY_ID" property="modifyId" /> |
| ... | ... | @@ -20,7 +21,7 @@ |
| 20 | 21 | |
| 21 | 22 | <!-- 通用查询结果列 --> |
| 22 | 23 | <sql id="Base_Column_List"> |
| 23 | - ID AS id, TYPE AS type, NAME AS name, REMARKS AS remarks, SHORT_CODE AS shortCode, ORG_ID AS orgId, CREATE_ID AS createId, CREATE_TIME AS createTime, MODIFY_ID AS modifyId, MODIFY_TIME AS modifyTime, IFDEL AS ifdel, ENABLE AS enable | |
| 24 | + ID AS id, TYPE AS type, NAME AS name, REMARKS AS remarks, SHORT_CODE AS shortCode, ORG_ID AS orgId, GROUPORG_ID AS grouporgId, CREATE_ID AS createId, CREATE_TIME AS createTime, MODIFY_ID AS modifyId, MODIFY_TIME AS modifyTime, IFDEL AS ifdel, ENABLE AS enable | |
| 24 | 25 | </sql> |
| 25 | 26 | </mapper> |
parent/base.common/src/main/java/com/lyms/base/common/entity/role/Roles.java
View file @
8a11e77