|
@@ -53,7 +53,7 @@ public interface StandardMapper {
|
|
* @param packColCondition packColCondition
|
|
* @param packColCondition packColCondition
|
|
* @return int
|
|
* @return int
|
|
*/
|
|
*/
|
|
- @SelectProvider(type = SqlProvider.class, method = "delete")
|
|
|
|
|
|
+ @DeleteProvider(type = SqlProvider.class, method = "delete")
|
|
Integer delete(@Param("tableName") String tableName, @Param("condition") JSONObject condition
|
|
Integer delete(@Param("tableName") String tableName, @Param("condition") JSONObject condition
|
|
, @Param("packColCondition") JSONObject packColCondition);
|
|
, @Param("packColCondition") JSONObject packColCondition);
|
|
|
|
|
|
@@ -77,7 +77,7 @@ public interface StandardMapper {
|
|
* @param packColCondition packColCondition
|
|
* @param packColCondition packColCondition
|
|
* @return int
|
|
* @return int
|
|
*/
|
|
*/
|
|
- @SelectProvider(type = SqlProvider.class, method = "update")
|
|
|
|
|
|
+ @UpdateProvider(type = SqlProvider.class, method = "update")
|
|
Integer update(@Param("tableName") String tableName, @Param("packCommitData") JSONObject packCommitData
|
|
Integer update(@Param("tableName") String tableName, @Param("packCommitData") JSONObject packCommitData
|
|
, @Param("packColCondition") JSONObject packColCondition);
|
|
, @Param("packColCondition") JSONObject packColCondition);
|
|
|
|
|