|  |  | 
 |  |  | import java.util.List; | 
 |  |  | import javax.servlet.http.HttpServletResponse; | 
 |  |  |  | 
 |  |  | import com.ruoyi.common.core.domain.entity.SysUser; | 
 |  |  | import io.swagger.annotations.Api; | 
 |  |  | import io.swagger.annotations.ApiOperation; | 
 |  |  | import org.springframework.security.access.prepost.PreAuthorize; | 
 |  |  | 
 |  |  |     public TableDataInfo selectPatMedPhysicallist(@RequestBody  PatMedPhysical patMedPhysical) | 
 |  |  |     { | 
 |  |  |         startPage(); | 
 |  |  |         SysUser user = getLoginUser().getUser(); | 
 |  |  |         patMedPhysical.setOrgid(user.getOrgid()); | 
 |  |  |         List<PatMedPhysical> list = patMedPhysicalService.selectPatMedPhysicalList(patMedPhysical); | 
 |  |  |         return getDataTable(list); | 
 |  |  |     } |