杜洪波
2024-10-09 0265a4b398b7618880d5dcb6fdb50939409eb2a0
src/main/java/com/product/administration/service/CustomerSatisfactionService.java
@@ -23,7 +23,7 @@
    * @return
    */
   public DataTableEntity listCustomerSatisfaction(FieldSetEntity fse) {
      return baseDao.listTable(CmnConst.product_project_CUSTOMER_SATISFACTION, null, null, null, null, fse.getInteger(CmnConst.PAGESIZE), fse.getInteger(CmnConst.CPAGE));
      return baseDao.listTable(CmnConst.PRODUCT_PROJECT_CUSTOMER_SATISFACTION, null, null, null, null, fse.getInteger(CmnConst.PAGESIZE), fse.getInteger(CmnConst.CPAGE));
   }
   
   /**
@@ -32,7 +32,7 @@
    * @return
    */
   public FieldSetEntity findCustomerSatisfaction(String uuid) {
      return baseDao.getFieldSetEntity(CmnConst.product_project_CUSTOMER_SATISFACTION, uuid, true);
      return baseDao.getFieldSetEntity(CmnConst.PRODUCT_PROJECT_CUSTOMER_SATISFACTION, uuid, true);
   }
   
   /**
@@ -62,6 +62,6 @@
    */
   @Transactional
   public boolean deleteCustomerSatisfaction(String uuid) {
      return baseDao.delete(CmnConst.product_project_CUSTOMER_SATISFACTION, "uuid=?", new Object[] {uuid});
      return baseDao.delete(CmnConst.PRODUCT_PROJECT_CUSTOMER_SATISFACTION, "uuid=?", new Object[] {uuid});
   }
}