@@ -781,6 +781,14 @@ public class WxRentContractServiceImpl implements WxRentContractService {
return resultList;
}
public boolean isFirstDay(Date date){
int dateInt = Integer.parseInt(new SimpleDateFormat("d").format(date));
if(dateInt == 1){
return true;
}
return false;
}
public Map<String, Object> buildRent(int lease, int receivePeriod, int price, Date startdate, int dayType, WxRentContract wxRentContract, Long userId, WxMerchant wxMerchant, int billcount, Integer isPreview, Map<String, Object> shopInfo) {
String shopInfoStr = null;
if (shopInfo != null) {
@@ -794,7 +802,9 @@ public class WxRentContractServiceImpl implements WxRentContractService {