| | |
| | | import com.baomidou.mybatisplus.mapper.Wrapper; |
| | | import com.baomidou.mybatisplus.plugins.Page; |
| | | import com.core.common.DateUtils; |
| | | import com.zy.crm.manager.entity.ReimburseCostTypes; |
| | | import com.zy.crm.manager.entity.ReimburseOnlineDetl; |
| | | import com.zy.crm.manager.entity.WeeklyCostTypes; |
| | | import com.zy.crm.manager.entity.WeeklyDailyPlan; |
| | | import com.zy.crm.manager.entity.*; |
| | | import com.zy.crm.manager.service.WeeklyCostTypesService; |
| | | import com.core.annotations.ManagerAuth; |
| | | import com.core.common.BaseRes; |
| | |
| | | |
| | | @RequestMapping(value = "/weeklyCostTypes/covert/plan/{id}/auth") |
| | | @ManagerAuth |
| | | public R covert(@PathVariable("id") Integer id) { |
| | | public R covertPlan(@PathVariable("id") Integer id) { |
| | | WeeklyDailyPlan weeklyDailyPlan = new WeeklyDailyPlan(id); |
| | | return R.ok().add(weeklyDailyPlan); |
| | | } |
| | | |
| | | @RequestMapping(value = "/weeklyCostTypes/covert/reality/{id}/auth") |
| | | @ManagerAuth |
| | | public R covertReality(@PathVariable("id") Integer id) { |
| | | WeeklyDailyReality weeklyDailyReality = new WeeklyDailyReality(id); |
| | | return R.ok().add(weeklyDailyReality); |
| | | } |
| | | |
| | | // xm-select 搜索商品列表 |
| | | @RequestMapping("/weeklyCostTypes/all/get/kv") |
| | | @ManagerAuth |