| | |
| | | import com.ruoyi.framework.web.domain.AjaxResult; |
| | | import com.ruoyi.staff.pojo.StaffContract; |
| | | import com.ruoyi.staff.service.StaffContractService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.v3.oas.annotations.tags.Tag; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.annotation.Resource; |
| | | import jakarta.annotation.Resource; |
| | | |
| | | /** |
| | | * 员工台账/合同管理 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/staff/staffContract") |
| | | @Api(tags = "员工台账/合同管理") |
| | | @Tag(name = "员工台账/合同管理") |
| | | public class StaffContractController { |
| | | |
| | | @Resource |