forked from jeequan/jeepay
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
jmdhappy
committed
Nov 15, 2017
1 parent
d5333a0
commit deee24e
Showing
77 changed files
with
10,436 additions
and
1,001 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
xxpay-common/src/main/java/org/xxpay/common/util/StrUtil.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package org.xxpay.common.util; | ||
|
||
/** | ||
* @author: dingzhiwei | ||
* @date: 17/11/1 | ||
* @description: | ||
*/ | ||
public class StrUtil { | ||
|
||
public static String toString(Object obj) { | ||
return obj == null?"":obj.toString(); | ||
} | ||
|
||
public static String toString(Object obj, String nullStr) { | ||
return obj == null?nullStr:obj.toString(); | ||
} | ||
|
||
} |
32 changes: 32 additions & 0 deletions
32
xxpay-dal/src/main/java/org/xxpay/dal/dao/mapper/MchNotifyMapper.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package org.xxpay.dal.dao.mapper; | ||
|
||
import java.util.List; | ||
import org.apache.ibatis.annotations.Param; | ||
import org.xxpay.dal.dao.model.MchNotify; | ||
import org.xxpay.dal.dao.model.MchNotifyExample; | ||
|
||
public interface MchNotifyMapper { | ||
int countByExample(MchNotifyExample example); | ||
|
||
int deleteByExample(MchNotifyExample example); | ||
|
||
int deleteByPrimaryKey(String orderId); | ||
|
||
int insert(MchNotify record); | ||
|
||
int insertSelective(MchNotify record); | ||
|
||
List<MchNotify> selectByExample(MchNotifyExample example); | ||
|
||
MchNotify selectByPrimaryKey(String orderId); | ||
|
||
int updateByExampleSelective(@Param("record") MchNotify record, @Param("example") MchNotifyExample example); | ||
|
||
int updateByExample(@Param("record") MchNotify record, @Param("example") MchNotifyExample example); | ||
|
||
int updateByPrimaryKeySelective(MchNotify record); | ||
|
||
int updateByPrimaryKey(MchNotify record); | ||
|
||
int insertSelectiveOnDuplicateKeyUpdate(MchNotify record); | ||
} |
30 changes: 30 additions & 0 deletions
30
xxpay-dal/src/main/java/org/xxpay/dal/dao/mapper/RefundOrderMapper.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package org.xxpay.dal.dao.mapper; | ||
|
||
import java.util.List; | ||
import org.apache.ibatis.annotations.Param; | ||
import org.xxpay.dal.dao.model.RefundOrder; | ||
import org.xxpay.dal.dao.model.RefundOrderExample; | ||
|
||
public interface RefundOrderMapper { | ||
int countByExample(RefundOrderExample example); | ||
|
||
int deleteByExample(RefundOrderExample example); | ||
|
||
int deleteByPrimaryKey(String refundOrderId); | ||
|
||
int insert(RefundOrder record); | ||
|
||
int insertSelective(RefundOrder record); | ||
|
||
List<RefundOrder> selectByExample(RefundOrderExample example); | ||
|
||
RefundOrder selectByPrimaryKey(String refundOrderId); | ||
|
||
int updateByExampleSelective(@Param("record") RefundOrder record, @Param("example") RefundOrderExample example); | ||
|
||
int updateByExample(@Param("record") RefundOrder record, @Param("example") RefundOrderExample example); | ||
|
||
int updateByPrimaryKeySelective(RefundOrder record); | ||
|
||
int updateByPrimaryKey(RefundOrder record); | ||
} |
Oops, something went wrong.