| | |
| | | |
| | | <!-- 通用查询映射结果 --> |
| | | <resultMap id="BaseResultMap" type="com.zy.system.entity.User"> |
| | | <id column="id" property="id" /> |
| | | <result column="host_id" property="hostId" /> |
| | | <result column="username" property="username" /> |
| | | <result column="mobile" property="mobile" /> |
| | | <result column="password" property="password" /> |
| | | <result column="role_id" property="roleId" /> |
| | | <result column="create_time" property="createTime" /> |
| | | <result column="status" property="status" /> |
| | | <id column="ID" property="id" /> |
| | | <result column="HOST_ID" property="hostId" /> |
| | | <result column="USERNAME" property="username" /> |
| | | <result column="MOBILE" property="mobile" /> |
| | | <result column="PASSWORD" property="password" /> |
| | | <result column="ROLE_ID" property="roleId" /> |
| | | <result column="CREATE_TIME" property="createTime" /> |
| | | <result column="STATUS" property="status" /> |
| | | |
| | | </resultMap> |
| | | |