| | |
| | | <result property="statu" column="STATU"/> |
| | | <result property="zkTotal" column="ZK_TOTAL"/> |
| | | <result property="shopId" column="SHOP_ID"/> |
| | | <result property="companyId" column="company_id"/> |
| | | <result property="vipName" column="VIP_NAME"/> |
| | | <result property="vipNo" column="VIP_NO"/> |
| | | <result property="staffName" column="STAFF_NAME"/> |
| | |
| | | <if test="record.shopId != null"> |
| | | and a.shop_id=#{record.shopId} |
| | | </if> |
| | | <if test="record.companyId != null"> |
| | | and a.company_id=#{record.companyId} |
| | | </if> |
| | | </where> |
| | | <if test="pageVo !=null"><!-- 判断pageVo对象是否为空 --> |
| | | order by a.order_time desc |
| | |
| | | <if test="record.shopId != null"> |
| | | and a.shop_id=#{record.shopId} |
| | | </if> |
| | | <if test="record.companyId != null"> |
| | | and a.company_id=#{record.companyId} |
| | | </if> |
| | | </where> |
| | | </select> |
| | | |