| | |
| | | <resultMap id="BaseResultMap" type="com.ruoyi.system.domain.TFoundationPerson"> |
| | | <id column="id" property="id" /> |
| | | <result column="mealCount" property="mealCount" /> |
| | | <result column="createTime" property="createTime" /> |
| | | <result column="shopId" property="shopId" /> |
| | | </resultMap> |
| | | |
| | | <!-- 通用查询结果列 --> |
| | | <sql id="Base_Column_List"> |
| | | id, mealCount |
| | | id, mealCount,createTime |
| | | </sql> |
| | | <select id="getList" resultType="com.ruoyi.system.vo.TFoundationPersonVO"> |
| | | select |
| | | <include refid="Base_Column_List"/> |
| | | from t_foundation_person |
| | | ORDER BY createTime DESC |
| | | </select> |
| | | |
| | | </mapper> |