|
@ -122,9 +122,9 @@ public class HealthEduArticlePatientService extends BaseService {
|
|
|
(wheaType > 0 ? " and a.wheaType = ? " : "") +
|
|
|
" order by a.id desc limit 0," + pagesize;
|
|
|
Object params[] = null;
|
|
|
if(wheaType>0&&id>0){
|
|
|
if(wheaType>-1&&id>0){
|
|
|
params = new Object[]{patient,id,wheaType};
|
|
|
}else if(wheaType>0&&id<0){
|
|
|
}else if(wheaType>-1&&id<0){
|
|
|
params = new Object[]{patient,wheaType};
|
|
|
}
|
|
|
else if(wheaType<0&&id>0){
|