| | |
| | | package com.thhy.mobile.modules.biz.login.mapper; |
| | | |
| | | import com.thhy.general.common.entity.SysUserDto; |
| | | import com.thhy.mobile.modules.biz.login.entity.ProLinePlan; |
| | | import com.thhy.mobile.modules.biz.login.entity.SysUsers; |
| | | |
| | | import java.util.HashMap; |
| | | import java.util.List; |
| | | |
| | | public interface SysUserMapper { |
| | | |
| | |
| | | HashMap<String,Object> queryCompanyByComAdmin(String userId); |
| | | |
| | | HashMap<String,Object> queryCompanyByUser(String userId); |
| | | |
| | | List<HashMap<String,Object>> queryAllProLine(); |
| | | |
| | | String queryProLineNameById(String proLineId); |
| | | |
| | | int countTodayLinePlanByLineId(String proLineId); |
| | | |
| | | String checkPipeExitsByRingNums(List<String> ringNumList); |
| | | |
| | | String checkPlanExitsByRingNums(List<String> ringNumList); |
| | | |
| | | void insertProLinePlan(ProLinePlan proLinePlan); |
| | | } |