Bläddra i källkod

git-svn-id: https://192.168.57.71/svn/jsgkj@947 931142cf-59ea-a443-aa0e-51397b428577

xt_yuanxd 8 år sedan
förälder
incheckning
54609e9955

+ 1 - 1
gkaqv2/trunk/modules/frame/src/main/java/com/xt/js/gkaq/frame/service/WFPropService.java → gkaqv2/trunk/modules/frame/src/main/java/com/xt/js/gkaq/frame/service/WfPropService.java

@@ -9,7 +9,7 @@ import com.xt.js.gkaq.frame.model.WfPropModel;
  * @author 袁晓冬
  * 
  */
-public interface WFPropService extends BaseUUIDModelService<WfPropModel> {
+public interface WfPropService extends BaseUUIDModelService<WfPropModel> {
     /**
      * 检查属性值是否等于指定值
      * 

+ 2 - 2
gkaqv2/trunk/modules/frame/src/main/java/com/xt/js/gkaq/frame/service/impl/WFPropServiceImpl.java

@@ -10,7 +10,7 @@ import com.xt.js.gkaq.common.BaseMapper;
 import com.xt.js.gkaq.common.BaseUUIDModelServiceImpl;
 import com.xt.js.gkaq.frame.mappers.WfPropModelMapper;
 import com.xt.js.gkaq.frame.model.WfPropModel;
-import com.xt.js.gkaq.frame.service.WFPropService;
+import com.xt.js.gkaq.frame.service.WfPropService;
 
 /**
  * Á÷³Ì¿ØÖÆ·þÎñʵÏÖÀà
@@ -19,7 +19,7 @@ import com.xt.js.gkaq.frame.service.WFPropService;
  * 
  */
 @Service
-public class WFPropServiceImpl extends BaseUUIDModelServiceImpl<WfPropModel> implements WFPropService {
+public class WFPropServiceImpl extends BaseUUIDModelServiceImpl<WfPropModel> implements WfPropService {
     @Autowired
     private WfPropModelMapper mapper;