parent
0533a2873e
commit
f46d7356b4
|
|
@ -0,0 +1,14 @@
|
||||||
|
package com.securitycontrol.screen.mapper;
|
||||||
|
|
||||||
|
import com.securitycontrol.screen.domain.SjConstructionProgress;
|
||||||
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Mapper
|
||||||
|
public interface SjConstructionProgressMapper {
|
||||||
|
|
||||||
|
List<SjConstructionProgress> selectProProgress(SjConstructionProgress o);
|
||||||
|
|
||||||
|
List<SjConstructionProgress> getProgressWithPercent(SjConstructionProgress o);
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,14 @@
|
||||||
|
package com.securitycontrol.screen.mapper;
|
||||||
|
|
||||||
|
import com.securitycontrol.screen.domain.SjProjectQuality;
|
||||||
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Mapper
|
||||||
|
public interface SjProjectQualityMapper {
|
||||||
|
|
||||||
|
SjProjectQuality selectProQualityData(SjProjectQuality o);
|
||||||
|
|
||||||
|
List<SjProjectQuality> selectProQualityEcharts(SjProjectQuality o);
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,16 @@
|
||||||
|
package com.securitycontrol.screen.mapper;
|
||||||
|
|
||||||
|
import com.securitycontrol.screen.domain.SjProjectSafety;
|
||||||
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Mapper
|
||||||
|
public interface SjProjectSafetyMapper {
|
||||||
|
|
||||||
|
List<SjProjectSafety> selectProSafetyLedger(SjProjectSafety o);
|
||||||
|
|
||||||
|
List<SjProjectSafety> selectProSafetyVideo(SjProjectSafety o);
|
||||||
|
|
||||||
|
List<SjProjectSafety> selectBallSelect(SjProjectSafety o);
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue