| | |
| | | |
| | | <!-- 通用查询映射结果 --> |
| | | <resultMap id="BaseResultMap" type="com.zy.system.entity.Host"> |
| | | <id column="id" property="id" /> |
| | | <result column="name" property="name" /> |
| | | <result column="flag" property="flag" /> |
| | | <result column="create_time" property="createTime" /> |
| | | <result column="update_time" property="updateTime" /> |
| | | <result column="status" property="status" /> |
| | | <id column="ID" property="id" /> |
| | | <result column="NAME" property="name" /> |
| | | <result column="FLAG" property="flag" /> |
| | | <result column="CREATE_TIME" property="createTime" /> |
| | | <result column="UPDATE_TIME" property="updateTime" /> |
| | | <result column="STATUS" property="status" /> |
| | | |
| | | </resultMap> |
| | | |