package com.artfess.uc.controller; import com.artfess.base.controller.BaseController; import com.artfess.base.model.CommonResult; import com.artfess.base.util.StringUtil; import com.artfess.uc.manager.HolidayTimeManager; import com.artfess.uc.model.HolidayTime; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiParam; import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import javax.annotation.Resource; /** * *
* 描述:假期时间 控制器类 * 构建组:x7 * 作者:qiuxd * 邮箱:heyf@jee-soft.cn * 日期:2020-08-04 11:04:36 * 版权:广州宏天软件股份有限公司 **/ @RestController @RequestMapping(value="/uc/holidayTime/v1") @Api(tags="holidayTimeController") public class HolidayTimeController extends BaseController