diff --git a/newadmin/admin/src/main/java/com/chaozhanggui/admin/system/controller/UserController.java b/newadmin/admin/src/main/java/com/chaozhanggui/admin/system/controller/UserController.java index aea55ff..91fe76c 100644 --- a/newadmin/admin/src/main/java/com/chaozhanggui/admin/system/controller/UserController.java +++ b/newadmin/admin/src/main/java/com/chaozhanggui/admin/system/controller/UserController.java @@ -129,4 +129,16 @@ public class UserController { return new RespBody("999995"); } + + + /** + * 查询用户总收益和可提收益,冻结收益 ,已提收益 + * @param loginName + * @param token + * @param userId + */ + @RequestMapping("getUserBalance") + public RespBody getUserBalance(@RequestHeader("loginName") String loginName,@RequestHeader("token") String token,@RequestHeader("userId") String userId){ + return userservice.getUserBalance(userId); + } } diff --git a/newadmin/admin/src/main/java/com/chaozhanggui/admin/system/service/Userservice.java b/newadmin/admin/src/main/java/com/chaozhanggui/admin/system/service/Userservice.java index 2999a81..1b5620b 100644 --- a/newadmin/admin/src/main/java/com/chaozhanggui/admin/system/service/Userservice.java +++ b/newadmin/admin/src/main/java/com/chaozhanggui/admin/system/service/Userservice.java @@ -9,6 +9,7 @@ import com.chaozhanggui.admin.system.util.RedisCst; import com.chaozhanggui.admin.system.util.RedisUtil; import com.chaozhanggui.admin.system.util.TokenUtil; import com.chaozhanggui.common.system.config.RespBody; +import com.chaozhanggui.dao.system.dao.TbPlussCashAccountMapper; import com.chaozhanggui.dao.system.dao.TbPlussCashMapper; import com.chaozhanggui.dao.system.dao.TbPlussUserInfoMapper; import com.chaozhanggui.dao.system.dao.TbPlussUserPromotionMapper; @@ -22,7 +23,9 @@ import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; +import java.math.BigDecimal; import java.util.HashMap; +import java.util.LinkedList; import java.util.List; import java.util.Map; import java.util.stream.Collectors; @@ -44,6 +47,9 @@ public class Userservice { @Autowired TbPlussCashMapper tbPlussCashMapper; + @Autowired + TbPlussCashAccountMapper tbPlussCashAccountMapper; + public RespBody doLogin(String loginName,String password,String userType,String ip) throws Exception { Boolean flag=false; @@ -278,4 +284,71 @@ public class Userservice { return new RespBody("000000"); } + + public RespBody getUserBalance(String userId){ + Map map=new HashMap<>(); + + BigDecimal profit= tbPlussCashMapper.selectByUserId(userId); + + BigDecimal fronzenAmt=tbPlussCashMapper.selectCashFrozenAmountByUserId(userId); + + BigDecimal successAmt=tbPlussCashMapper.selectCashAmt(userId); + + map.put("sumProfit",profit); + map.put("fronZenAmt",fronzenAmt); + map.put("successAmt",successAmt); + map.put("availableBalance",profit.subtract(fronzenAmt).subtract(successAmt)); + return new RespBody("000000",map); + + } + + + public RespBody withdrawalProfit(String userId,BigDecimal amount){ + + BigDecimal profit= tbPlussCashMapper.selectByUserId(userId); + + BigDecimal fronzenAmt=tbPlussCashMapper.selectCashFrozenAmountByUserId(userId); + + BigDecimal successAmt=tbPlussCashMapper.selectCashAmt(userId); + + if(amount.compareTo(profit.subtract(fronzenAmt).subtract(successAmt))>0){ + log.error("可提余额不足:{},{},{}",userId,amount,profit.subtract(fronzenAmt).subtract(successAmt)); + return new RespBody("000029"); + } + + + + TbPlussCash cash=new TbPlussCash(); + + return null; + + } + + + + public LinkedList getCashMap(String userId, LinkedList list){ + TbPlussUserPromotion promotion=userPromotionMapper.selectUserProByUserId(userId); + if(ObjectUtil.isNotEmpty(promotion)&&"0".equals(promotion.getParentUserId())){ + CashStatus cashStatus=new CashStatus(); + cashStatus.setUserId(promotion.getUserId().toString()); + cashStatus.setUserType(promotion.getTypeCode()); + cashStatus.setStatus("0"); + cashStatus.setLoginName(promotion.getLoginName() == null?"null":promotion.getLoginName()); + list.add(cashStatus); + promotion.setCashStatus(list); + return list; + + } + if("AG".equals(promotion.getTypeCode())||"SO".equals(promotion.getTypeCode())||"FO".equals(promotion.getTypeCode())){ + CashStatus cashStatus=new CashStatus(); + cashStatus.setUserId(promotion.getUserId().toString()); + cashStatus.setUserType(promotion.getTypeCode()); + cashStatus.setStatus("0"); + cashStatus.setLoginName(promotion.getLoginName()); + list.add(cashStatus); + promotion.setCashStatus(list); + } + getCashMap(promotion.getParentUserId(),list); + return list; + } } diff --git a/newadmin/admin/src/main/java/com/chaozhanggui/admin/system/util/PrinterUtils.java b/newadmin/admin/src/main/java/com/chaozhanggui/admin/system/util/PrinterUtils.java index e527d82..9f9e7a9 100644 --- a/newadmin/admin/src/main/java/com/chaozhanggui/admin/system/util/PrinterUtils.java +++ b/newadmin/admin/src/main/java/com/chaozhanggui/admin/system/util/PrinterUtils.java @@ -90,7 +90,7 @@ public class PrinterUtils { //设备名称 String devName = "ZF544PG0100001"; //行为方式 1:只打印数据 2:只播放信息 3:打印数据并播放信息 - Integer actWay = 3; + Integer actWay = 1; //打印联数 int cn = 1; //打印内容 diff --git a/newadmin/common-api/src/main/java/com/chaozhanggui/common/system/util/ExceptionUtil.java b/newadmin/common-api/src/main/java/com/chaozhanggui/common/system/util/ExceptionUtil.java index 65f2806..4337549 100644 --- a/newadmin/common-api/src/main/java/com/chaozhanggui/common/system/util/ExceptionUtil.java +++ b/newadmin/common-api/src/main/java/com/chaozhanggui/common/system/util/ExceptionUtil.java @@ -44,10 +44,14 @@ public class ExceptionUtil { map.put("000026","请等待下级审核完成"); map.put("000027","提现已被拒绝"); map.put("000028","已被上级审核"); + map.put("000029","可提余额不足"); + + + + - map.put("000029","优惠券已过期"); map.put("000030","账户状态异常"); map.put("000031","账户余额不足"); map.put("000032","请求待接受"); diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbLklRegionBankInfoMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbLklRegionBankInfoMapper.java new file mode 100644 index 0000000..15e8ca9 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbLklRegionBankInfoMapper.java @@ -0,0 +1,21 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbLklRegionBankInfo; +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbLklRegionBankInfoMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbLklRegionBankInfo record); + + int insertSelective(TbLklRegionBankInfo record); + + TbLklRegionBankInfo selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbLklRegionBankInfo record); + + int updateByPrimaryKey(TbLklRegionBankInfo record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAccessChannelCipherCodeMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAccessChannelCipherCodeMapper.java new file mode 100644 index 0000000..e01d403 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAccessChannelCipherCodeMapper.java @@ -0,0 +1,25 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussAccessChannelCipherCode; +import com.chaozhanggui.dao.system.entity.TbPlussAccessChannelCipherCodeWithBLOBs; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussAccessChannelCipherCodeMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussAccessChannelCipherCodeWithBLOBs record); + + int insertSelective(TbPlussAccessChannelCipherCodeWithBLOBs record); + + TbPlussAccessChannelCipherCodeWithBLOBs selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussAccessChannelCipherCodeWithBLOBs record); + + int updateByPrimaryKeyWithBLOBs(TbPlussAccessChannelCipherCodeWithBLOBs record); + + int updateByPrimaryKey(TbPlussAccessChannelCipherCode record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAccessChannelMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAccessChannelMapper.java new file mode 100644 index 0000000..c5fbfce --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAccessChannelMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussAccessChannel; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussAccessChannelMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussAccessChannel record); + + int insertSelective(TbPlussAccessChannel record); + + TbPlussAccessChannel selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussAccessChannel record); + + int updateByPrimaryKey(TbPlussAccessChannel record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAccessChannelWxConfMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAccessChannelWxConfMapper.java new file mode 100644 index 0000000..dd4c746 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAccessChannelWxConfMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussAccessChannelWxConf; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussAccessChannelWxConfMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussAccessChannelWxConf record); + + int insertSelective(TbPlussAccessChannelWxConf record); + + TbPlussAccessChannelWxConf selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussAccessChannelWxConf record); + + int updateByPrimaryKey(TbPlussAccessChannelWxConf record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAccountMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAccountMapper.java new file mode 100644 index 0000000..dfe1621 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAccountMapper.java @@ -0,0 +1,24 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussAccount; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussAccountMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussAccount record); + + int insertSelective(TbPlussAccount record); + + TbPlussAccount selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussAccount record); + + int updateByPrimaryKeyWithBLOBs(TbPlussAccount record); + + int updateByPrimaryKey(TbPlussAccount record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAccountOldMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAccountOldMapper.java new file mode 100644 index 0000000..fae9025 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAccountOldMapper.java @@ -0,0 +1,24 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussAccountOld; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussAccountOldMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussAccountOld record); + + int insertSelective(TbPlussAccountOld record); + + TbPlussAccountOld selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussAccountOld record); + + int updateByPrimaryKeyWithBLOBs(TbPlussAccountOld record); + + int updateByPrimaryKey(TbPlussAccountOld record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAccountV2Mapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAccountV2Mapper.java new file mode 100644 index 0000000..ec348ab --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAccountV2Mapper.java @@ -0,0 +1,24 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussAccountV2; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussAccountV2Mapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussAccountV2 record); + + int insertSelective(TbPlussAccountV2 record); + + TbPlussAccountV2 selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussAccountV2 record); + + int updateByPrimaryKeyWithBLOBs(TbPlussAccountV2 record); + + int updateByPrimaryKey(TbPlussAccountV2 record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussActivityActivateMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussActivityActivateMapper.java new file mode 100644 index 0000000..75ac832 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussActivityActivateMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussActivityActivate; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussActivityActivateMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussActivityActivate record); + + int insertSelective(TbPlussActivityActivate record); + + TbPlussActivityActivate selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussActivityActivate record); + + int updateByPrimaryKey(TbPlussActivityActivate record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussActivityConsumReturnMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussActivityConsumReturnMapper.java new file mode 100644 index 0000000..0d019fe --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussActivityConsumReturnMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussActivityConsumReturn; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussActivityConsumReturnMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussActivityConsumReturn record); + + int insertSelective(TbPlussActivityConsumReturn record); + + TbPlussActivityConsumReturn selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussActivityConsumReturn record); + + int updateByPrimaryKey(TbPlussActivityConsumReturn record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussActivityEnrollMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussActivityEnrollMapper.java new file mode 100644 index 0000000..1241ddf --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussActivityEnrollMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussActivityEnroll; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussActivityEnrollMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussActivityEnroll record); + + int insertSelective(TbPlussActivityEnroll record); + + TbPlussActivityEnroll selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussActivityEnroll record); + + int updateByPrimaryKey(TbPlussActivityEnroll record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussActivityRechargeMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussActivityRechargeMapper.java new file mode 100644 index 0000000..ba5224b --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussActivityRechargeMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussActivityRecharge; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussActivityRechargeMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussActivityRecharge record); + + int insertSelective(TbPlussActivityRecharge record); + + TbPlussActivityRecharge selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussActivityRecharge record); + + int updateByPrimaryKey(TbPlussActivityRecharge record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussActivityRecommendMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussActivityRecommendMapper.java new file mode 100644 index 0000000..081d909 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussActivityRecommendMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussActivityRecommend; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussActivityRecommendMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussActivityRecommend record); + + int insertSelective(TbPlussActivityRecommend record); + + TbPlussActivityRecommend selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussActivityRecommend record); + + int updateByPrimaryKey(TbPlussActivityRecommend record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAgreementMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAgreementMapper.java new file mode 100644 index 0000000..ec8d122 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAgreementMapper.java @@ -0,0 +1,24 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussAgreement; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussAgreementMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussAgreement record); + + int insertSelective(TbPlussAgreement record); + + TbPlussAgreement selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussAgreement record); + + int updateByPrimaryKeyWithBLOBs(TbPlussAgreement record); + + int updateByPrimaryKey(TbPlussAgreement record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAliMccMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAliMccMapper.java new file mode 100644 index 0000000..19fcf4b --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAliMccMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussAliMcc; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussAliMccMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussAliMcc record); + + int insertSelective(TbPlussAliMcc record); + + TbPlussAliMcc selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussAliMcc record); + + int updateByPrimaryKey(TbPlussAliMcc record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAppGuideMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAppGuideMapper.java new file mode 100644 index 0000000..f270b95 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAppGuideMapper.java @@ -0,0 +1,24 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussAppGuide; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussAppGuideMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussAppGuide record); + + int insertSelective(TbPlussAppGuide record); + + TbPlussAppGuide selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussAppGuide record); + + int updateByPrimaryKeyWithBLOBs(TbPlussAppGuide record); + + int updateByPrimaryKey(TbPlussAppGuide record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAppMenuMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAppMenuMapper.java new file mode 100644 index 0000000..c6cf8be --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAppMenuMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussAppMenu; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussAppMenuMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussAppMenu record); + + int insertSelective(TbPlussAppMenu record); + + TbPlussAppMenu selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussAppMenu record); + + int updateByPrimaryKey(TbPlussAppMenu record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAppMenuUserTypeMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAppMenuUserTypeMapper.java new file mode 100644 index 0000000..d0bf592 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAppMenuUserTypeMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussAppMenuUserType; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussAppMenuUserTypeMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussAppMenuUserType record); + + int insertSelective(TbPlussAppMenuUserType record); + + TbPlussAppMenuUserType selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussAppMenuUserType record); + + int updateByPrimaryKey(TbPlussAppMenuUserType record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAppVersionInfoMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAppVersionInfoMapper.java new file mode 100644 index 0000000..831da03 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAppVersionInfoMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussAppVersionInfo; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussAppVersionInfoMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussAppVersionInfo record); + + int insertSelective(TbPlussAppVersionInfo record); + + TbPlussAppVersionInfo selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussAppVersionInfo record); + + int updateByPrimaryKey(TbPlussAppVersionInfo record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAppletInfoMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAppletInfoMapper.java new file mode 100644 index 0000000..f0bd396 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAppletInfoMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussAppletInfo; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussAppletInfoMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussAppletInfo record); + + int insertSelective(TbPlussAppletInfo record); + + TbPlussAppletInfo selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussAppletInfo record); + + int updateByPrimaryKey(TbPlussAppletInfo record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAppletStoreMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAppletStoreMapper.java new file mode 100644 index 0000000..1115d19 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAppletStoreMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussAppletStore; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussAppletStoreMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussAppletStore record); + + int insertSelective(TbPlussAppletStore record); + + TbPlussAppletStore selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussAppletStore record); + + int updateByPrimaryKey(TbPlussAppletStore record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAppletStoreUserMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAppletStoreUserMapper.java new file mode 100644 index 0000000..b81ee7f --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAppletStoreUserMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussAppletStoreUser; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussAppletStoreUserMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussAppletStoreUser record); + + int insertSelective(TbPlussAppletStoreUser record); + + TbPlussAppletStoreUser selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussAppletStoreUser record); + + int updateByPrimaryKey(TbPlussAppletStoreUser record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAreaCityMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAreaCityMapper.java new file mode 100644 index 0000000..8132286 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAreaCityMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussAreaCity; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussAreaCityMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussAreaCity record); + + int insertSelective(TbPlussAreaCity record); + + TbPlussAreaCity selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussAreaCity record); + + int updateByPrimaryKey(TbPlussAreaCity record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAreaMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAreaMapper.java new file mode 100644 index 0000000..c1c95bf --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussAreaMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussArea; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussAreaMapper { + int deleteByPrimaryKey(Integer fAreaNo); + + int insert(TbPlussArea record); + + int insertSelective(TbPlussArea record); + + TbPlussArea selectByPrimaryKey(Integer fAreaNo); + + int updateByPrimaryKeySelective(TbPlussArea record); + + int updateByPrimaryKey(TbPlussArea record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBank4CacheMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBank4CacheMapper.java new file mode 100644 index 0000000..0b695e1 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBank4CacheMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussBank4Cache; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussBank4CacheMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussBank4Cache record); + + int insertSelective(TbPlussBank4Cache record); + + TbPlussBank4Cache selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussBank4Cache record); + + int updateByPrimaryKey(TbPlussBank4Cache record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBankBranchLklMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBankBranchLklMapper.java new file mode 100644 index 0000000..6fd8d41 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBankBranchLklMapper.java @@ -0,0 +1,14 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussBankBranchLkl; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussBankBranchLklMapper { + int insert(TbPlussBankBranchLkl record); + + int insertSelective(TbPlussBankBranchLkl record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBankCardMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBankCardMapper.java new file mode 100644 index 0000000..e359b20 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBankCardMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussBankCard; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussBankCardMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussBankCard record); + + int insertSelective(TbPlussBankCard record); + + TbPlussBankCard selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussBankCard record); + + int updateByPrimaryKey(TbPlussBankCard record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBankCodeSxfMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBankCodeSxfMapper.java new file mode 100644 index 0000000..2371cc9 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBankCodeSxfMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussBankCodeSxf; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussBankCodeSxfMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussBankCodeSxf record); + + int insertSelective(TbPlussBankCodeSxf record); + + TbPlussBankCodeSxf selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussBankCodeSxf record); + + int updateByPrimaryKey(TbPlussBankCodeSxf record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBankCodeYsMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBankCodeYsMapper.java new file mode 100644 index 0000000..b2e107a --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBankCodeYsMapper.java @@ -0,0 +1,14 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussBankCodeYs; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussBankCodeYsMapper { + int insert(TbPlussBankCodeYs record); + + int insertSelective(TbPlussBankCodeYs record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBankRegionLklMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBankRegionLklMapper.java new file mode 100644 index 0000000..51eb2a1 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBankRegionLklMapper.java @@ -0,0 +1,14 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussBankRegionLkl; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussBankRegionLklMapper { + int insert(TbPlussBankRegionLkl record); + + int insertSelective(TbPlussBankRegionLkl record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBankUnionpayCodeMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBankUnionpayCodeMapper.java new file mode 100644 index 0000000..2356b75 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBankUnionpayCodeMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussBankUnionpayCode; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussBankUnionpayCodeMapper { + int deleteByPrimaryKey(String fUnionpayCode); + + int insert(TbPlussBankUnionpayCode record); + + int insertSelective(TbPlussBankUnionpayCode record); + + TbPlussBankUnionpayCode selectByPrimaryKey(String fUnionpayCode); + + int updateByPrimaryKeySelective(TbPlussBankUnionpayCode record); + + int updateByPrimaryKey(TbPlussBankUnionpayCode record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBannerMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBannerMapper.java new file mode 100644 index 0000000..ea291e3 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBannerMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussBanner; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussBannerMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussBanner record); + + int insertSelective(TbPlussBanner record); + + TbPlussBanner selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussBanner record); + + int updateByPrimaryKey(TbPlussBanner record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBestNewActivityMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBestNewActivityMapper.java new file mode 100644 index 0000000..47efa74 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBestNewActivityMapper.java @@ -0,0 +1,25 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussBestNewActivity; +import com.chaozhanggui.dao.system.entity.TbPlussBestNewActivityWithBLOBs; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussBestNewActivityMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussBestNewActivityWithBLOBs record); + + int insertSelective(TbPlussBestNewActivityWithBLOBs record); + + TbPlussBestNewActivityWithBLOBs selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussBestNewActivityWithBLOBs record); + + int updateByPrimaryKeyWithBLOBs(TbPlussBestNewActivityWithBLOBs record); + + int updateByPrimaryKey(TbPlussBestNewActivity record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBillSendRecordMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBillSendRecordMapper.java new file mode 100644 index 0000000..ff9dd41 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBillSendRecordMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussBillSendRecord; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussBillSendRecordMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussBillSendRecord record); + + int insertSelective(TbPlussBillSendRecord record); + + TbPlussBillSendRecord selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussBillSendRecord record); + + int updateByPrimaryKey(TbPlussBillSendRecord record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBusinessSceneLklMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBusinessSceneLklMapper.java new file mode 100644 index 0000000..c088893 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBusinessSceneLklMapper.java @@ -0,0 +1,14 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussBusinessSceneLkl; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussBusinessSceneLklMapper { + int insert(TbPlussBusinessSceneLkl record); + + int insertSelective(TbPlussBusinessSceneLkl record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBusinessSmallLklMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBusinessSmallLklMapper.java new file mode 100644 index 0000000..b6f04b8 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussBusinessSmallLklMapper.java @@ -0,0 +1,14 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussBusinessSmallLkl; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussBusinessSmallLklMapper { + int insert(TbPlussBusinessSmallLkl record); + + int insertSelective(TbPlussBusinessSmallLkl record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussCacheInfoMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussCacheInfoMapper.java new file mode 100644 index 0000000..7666dfb --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussCacheInfoMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussCacheInfo; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussCacheInfoMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussCacheInfo record); + + int insertSelective(TbPlussCacheInfo record); + + TbPlussCacheInfo selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussCacheInfo record); + + int updateByPrimaryKey(TbPlussCacheInfo record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussCallbackDataMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussCallbackDataMapper.java new file mode 100644 index 0000000..61553d4 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussCallbackDataMapper.java @@ -0,0 +1,24 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussCallbackData; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussCallbackDataMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussCallbackData record); + + int insertSelective(TbPlussCallbackData record); + + TbPlussCallbackData selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussCallbackData record); + + int updateByPrimaryKeyWithBLOBs(TbPlussCallbackData record); + + int updateByPrimaryKey(TbPlussCallbackData record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussCashAccountMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussCashAccountMapper.java new file mode 100644 index 0000000..4fc9587 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussCashAccountMapper.java @@ -0,0 +1,24 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussCashAccount; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussCashAccountMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussCashAccount record); + + int insertSelective(TbPlussCashAccount record); + + TbPlussCashAccount selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussCashAccount record); + + int updateByPrimaryKey(TbPlussCashAccount record); + + TbPlussCashAccount selectByUserId(String userId); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussCashMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussCashMapper.java new file mode 100644 index 0000000..0652b09 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussCashMapper.java @@ -0,0 +1,29 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussCash; +import org.mapstruct.Mapper; +import org.springframework.stereotype.Component; + +import java.math.BigDecimal; + +@Component +@Mapper +public interface TbPlussCashMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussCash record); + + int insertSelective(TbPlussCash record); + + TbPlussCash selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussCash record); + + int updateByPrimaryKey(TbPlussCash record); + + BigDecimal selectByUserId(String userId); + + BigDecimal selectCashFrozenAmountByUserId(String userId); + + BigDecimal selectCashAmt(String userId); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussCityMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussCityMapper.java new file mode 100644 index 0000000..c5f8369 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussCityMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussCity; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussCityMapper { + int deleteByPrimaryKey(Integer fCityNo); + + int insert(TbPlussCity record); + + int insertSelective(TbPlussCity record); + + TbPlussCity selectByPrimaryKey(Integer fCityNo); + + int updateByPrimaryKeySelective(TbPlussCity record); + + int updateByPrimaryKey(TbPlussCity record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussCommonRemarkMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussCommonRemarkMapper.java new file mode 100644 index 0000000..fa90ff4 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussCommonRemarkMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussCommonRemark; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussCommonRemarkMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussCommonRemark record); + + int insertSelective(TbPlussCommonRemark record); + + TbPlussCommonRemark selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussCommonRemark record); + + int updateByPrimaryKey(TbPlussCommonRemark record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussCommonSwitchMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussCommonSwitchMapper.java new file mode 100644 index 0000000..3511ec6 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussCommonSwitchMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussCommonSwitch; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussCommonSwitchMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussCommonSwitch record); + + int insertSelective(TbPlussCommonSwitch record); + + TbPlussCommonSwitch selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussCommonSwitch record); + + int updateByPrimaryKey(TbPlussCommonSwitch record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDayStatisticsMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDayStatisticsMapper.java new file mode 100644 index 0000000..091c334 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDayStatisticsMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussDayStatistics; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussDayStatisticsMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussDayStatistics record); + + int insertSelective(TbPlussDayStatistics record); + + TbPlussDayStatistics selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussDayStatistics record); + + int updateByPrimaryKey(TbPlussDayStatistics record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceBsjMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceBsjMapper.java new file mode 100644 index 0000000..a10cb04 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceBsjMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussDeviceBsj; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussDeviceBsjMapper { + int deleteByPrimaryKey(String snno); + + int insert(TbPlussDeviceBsj record); + + int insertSelective(TbPlussDeviceBsj record); + + TbPlussDeviceBsj selectByPrimaryKey(String snno); + + int updateByPrimaryKeySelective(TbPlussDeviceBsj record); + + int updateByPrimaryKey(TbPlussDeviceBsj record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceDetailMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceDetailMapper.java new file mode 100644 index 0000000..f14a5f2 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceDetailMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussDeviceDetail; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussDeviceDetailMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussDeviceDetail record); + + int insertSelective(TbPlussDeviceDetail record); + + TbPlussDeviceDetail selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussDeviceDetail record); + + int updateByPrimaryKey(TbPlussDeviceDetail record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceGoodTagMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceGoodTagMapper.java new file mode 100644 index 0000000..2d1813d --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceGoodTagMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussDeviceGoodTag; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussDeviceGoodTagMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussDeviceGoodTag record); + + int insertSelective(TbPlussDeviceGoodTag record); + + TbPlussDeviceGoodTag selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussDeviceGoodTag record); + + int updateByPrimaryKey(TbPlussDeviceGoodTag record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceGoodsMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceGoodsMapper.java new file mode 100644 index 0000000..c89e25b --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceGoodsMapper.java @@ -0,0 +1,24 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussDeviceGoods; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussDeviceGoodsMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussDeviceGoods record); + + int insertSelective(TbPlussDeviceGoods record); + + TbPlussDeviceGoods selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussDeviceGoods record); + + int updateByPrimaryKeyWithBLOBs(TbPlussDeviceGoods record); + + int updateByPrimaryKey(TbPlussDeviceGoods record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceMapper.java new file mode 100644 index 0000000..286ff92 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussDevice; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussDeviceMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussDevice record); + + int insertSelective(TbPlussDevice record); + + TbPlussDevice selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussDevice record); + + int updateByPrimaryKey(TbPlussDevice record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceMerchantBuyDetailMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceMerchantBuyDetailMapper.java new file mode 100644 index 0000000..8c2fb83 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceMerchantBuyDetailMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussDeviceMerchantBuyDetail; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussDeviceMerchantBuyDetailMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussDeviceMerchantBuyDetail record); + + int insertSelective(TbPlussDeviceMerchantBuyDetail record); + + TbPlussDeviceMerchantBuyDetail selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussDeviceMerchantBuyDetail record); + + int updateByPrimaryKey(TbPlussDeviceMerchantBuyDetail record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceMerchantBuyMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceMerchantBuyMapper.java new file mode 100644 index 0000000..05f0f2f --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceMerchantBuyMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussDeviceMerchantBuy; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussDeviceMerchantBuyMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussDeviceMerchantBuy record); + + int insertSelective(TbPlussDeviceMerchantBuy record); + + TbPlussDeviceMerchantBuy selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussDeviceMerchantBuy record); + + int updateByPrimaryKey(TbPlussDeviceMerchantBuy record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceOperateInfoMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceOperateInfoMapper.java new file mode 100644 index 0000000..42640a4 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceOperateInfoMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussDeviceOperateInfo; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussDeviceOperateInfoMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussDeviceOperateInfo record); + + int insertSelective(TbPlussDeviceOperateInfo record); + + TbPlussDeviceOperateInfo selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussDeviceOperateInfo record); + + int updateByPrimaryKey(TbPlussDeviceOperateInfo record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceOrderInfoMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceOrderInfoMapper.java new file mode 100644 index 0000000..642d76e --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceOrderInfoMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussDeviceOrderInfo; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussDeviceOrderInfoMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussDeviceOrderInfo record); + + int insertSelective(TbPlussDeviceOrderInfo record); + + TbPlussDeviceOrderInfo selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussDeviceOrderInfo record); + + int updateByPrimaryKey(TbPlussDeviceOrderInfo record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceSignUnbindMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceSignUnbindMapper.java new file mode 100644 index 0000000..1406d19 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceSignUnbindMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussDeviceSignUnbind; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussDeviceSignUnbindMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussDeviceSignUnbind record); + + int insertSelective(TbPlussDeviceSignUnbind record); + + TbPlussDeviceSignUnbind selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussDeviceSignUnbind record); + + int updateByPrimaryKey(TbPlussDeviceSignUnbind record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceSpecMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceSpecMapper.java new file mode 100644 index 0000000..2dfbdb9 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceSpecMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussDeviceSpec; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussDeviceSpecMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussDeviceSpec record); + + int insertSelective(TbPlussDeviceSpec record); + + TbPlussDeviceSpec selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussDeviceSpec record); + + int updateByPrimaryKey(TbPlussDeviceSpec record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceStockGroupMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceStockGroupMapper.java new file mode 100644 index 0000000..2fa196f --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceStockGroupMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussDeviceStockGroup; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussDeviceStockGroupMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussDeviceStockGroup record); + + int insertSelective(TbPlussDeviceStockGroup record); + + TbPlussDeviceStockGroup selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussDeviceStockGroup record); + + int updateByPrimaryKey(TbPlussDeviceStockGroup record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceStockMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceStockMapper.java new file mode 100644 index 0000000..732f525 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceStockMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussDeviceStock; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussDeviceStockMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussDeviceStock record); + + int insertSelective(TbPlussDeviceStock record); + + TbPlussDeviceStock selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussDeviceStock record); + + int updateByPrimaryKey(TbPlussDeviceStock record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceTransferDetailMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceTransferDetailMapper.java new file mode 100644 index 0000000..0e96004 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceTransferDetailMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussDeviceTransferDetail; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussDeviceTransferDetailMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussDeviceTransferDetail record); + + int insertSelective(TbPlussDeviceTransferDetail record); + + TbPlussDeviceTransferDetail selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussDeviceTransferDetail record); + + int updateByPrimaryKey(TbPlussDeviceTransferDetail record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceTransferMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceTransferMapper.java new file mode 100644 index 0000000..9667eff --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceTransferMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussDeviceTransfer; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussDeviceTransferMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussDeviceTransfer record); + + int insertSelective(TbPlussDeviceTransfer record); + + TbPlussDeviceTransfer selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussDeviceTransfer record); + + int updateByPrimaryKey(TbPlussDeviceTransfer record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceTypeMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceTypeMapper.java new file mode 100644 index 0000000..5aebc99 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceTypeMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussDeviceType; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussDeviceTypeMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussDeviceType record); + + int insertSelective(TbPlussDeviceType record); + + TbPlussDeviceType selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussDeviceType record); + + int updateByPrimaryKey(TbPlussDeviceType record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceVoiceBoxMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceVoiceBoxMapper.java new file mode 100644 index 0000000..274272e --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceVoiceBoxMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussDeviceVoiceBox; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussDeviceVoiceBoxMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussDeviceVoiceBox record); + + int insertSelective(TbPlussDeviceVoiceBox record); + + TbPlussDeviceVoiceBox selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussDeviceVoiceBox record); + + int updateByPrimaryKey(TbPlussDeviceVoiceBox record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceVoiceBoxMsgMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceVoiceBoxMsgMapper.java new file mode 100644 index 0000000..332fb37 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDeviceVoiceBoxMsgMapper.java @@ -0,0 +1,25 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussDeviceVoiceBoxMsg; +import com.chaozhanggui.dao.system.entity.TbPlussDeviceVoiceBoxMsgWithBLOBs; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussDeviceVoiceBoxMsgMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussDeviceVoiceBoxMsgWithBLOBs record); + + int insertSelective(TbPlussDeviceVoiceBoxMsgWithBLOBs record); + + TbPlussDeviceVoiceBoxMsgWithBLOBs selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussDeviceVoiceBoxMsgWithBLOBs record); + + int updateByPrimaryKeyWithBLOBs(TbPlussDeviceVoiceBoxMsgWithBLOBs record); + + int updateByPrimaryKey(TbPlussDeviceVoiceBoxMsg record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDictMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDictMapper.java new file mode 100644 index 0000000..f6b39fd --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussDictMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussDict; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussDictMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussDict record); + + int insertSelective(TbPlussDict record); + + TbPlussDict selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussDict record); + + int updateByPrimaryKey(TbPlussDict record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussEncryptKeyMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussEncryptKeyMapper.java new file mode 100644 index 0000000..a984506 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussEncryptKeyMapper.java @@ -0,0 +1,25 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussEncryptKey; +import com.chaozhanggui.dao.system.entity.TbPlussEncryptKeyWithBLOBs; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussEncryptKeyMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussEncryptKeyWithBLOBs record); + + int insertSelective(TbPlussEncryptKeyWithBLOBs record); + + TbPlussEncryptKeyWithBLOBs selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussEncryptKeyWithBLOBs record); + + int updateByPrimaryKeyWithBLOBs(TbPlussEncryptKeyWithBLOBs record); + + int updateByPrimaryKey(TbPlussEncryptKey record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussExtraLevelBenefitMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussExtraLevelBenefitMapper.java new file mode 100644 index 0000000..1fbc976 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussExtraLevelBenefitMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussExtraLevelBenefit; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussExtraLevelBenefitMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussExtraLevelBenefit record); + + int insertSelective(TbPlussExtraLevelBenefit record); + + TbPlussExtraLevelBenefit selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussExtraLevelBenefit record); + + int updateByPrimaryKey(TbPlussExtraLevelBenefit record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussFansConsumReturnMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussFansConsumReturnMapper.java new file mode 100644 index 0000000..abd2bf7 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussFansConsumReturnMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussFansConsumReturn; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussFansConsumReturnMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussFansConsumReturn record); + + int insertSelective(TbPlussFansConsumReturn record); + + TbPlussFansConsumReturn selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussFansConsumReturn record); + + int updateByPrimaryKey(TbPlussFansConsumReturn record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussFansMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussFansMapper.java new file mode 100644 index 0000000..b8fe17b --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussFansMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussFans; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussFansMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussFans record); + + int insertSelective(TbPlussFans record); + + TbPlussFans selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussFans record); + + int updateByPrimaryKey(TbPlussFans record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussGuideLabelMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussGuideLabelMapper.java new file mode 100644 index 0000000..612cb9b --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussGuideLabelMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussGuideLabel; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussGuideLabelMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussGuideLabel record); + + int insertSelective(TbPlussGuideLabel record); + + TbPlussGuideLabel selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussGuideLabel record); + + int updateByPrimaryKey(TbPlussGuideLabel record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussHelpVideoMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussHelpVideoMapper.java new file mode 100644 index 0000000..7175d0c --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussHelpVideoMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussHelpVideo; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussHelpVideoMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussHelpVideo record); + + int insertSelective(TbPlussHelpVideo record); + + TbPlussHelpVideo selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussHelpVideo record); + + int updateByPrimaryKey(TbPlussHelpVideo record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussIdCardCacheMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussIdCardCacheMapper.java new file mode 100644 index 0000000..9f7ae6d --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussIdCardCacheMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussIdCardCache; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussIdCardCacheMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussIdCardCache record); + + int insertSelective(TbPlussIdCardCache record); + + TbPlussIdCardCache selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussIdCardCache record); + + int updateByPrimaryKey(TbPlussIdCardCache record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussIdCardMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussIdCardMapper.java new file mode 100644 index 0000000..4b13622 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussIdCardMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussIdCard; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussIdCardMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussIdCard record); + + int insertSelective(TbPlussIdCard record); + + TbPlussIdCard selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussIdCard record); + + int updateByPrimaryKey(TbPlussIdCard record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussImgReflectMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussImgReflectMapper.java new file mode 100644 index 0000000..adbeb26 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussImgReflectMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussImgReflect; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussImgReflectMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussImgReflect record); + + int insertSelective(TbPlussImgReflect record); + + TbPlussImgReflect selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussImgReflect record); + + int updateByPrimaryKey(TbPlussImgReflect record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussInviteRateMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussInviteRateMapper.java new file mode 100644 index 0000000..1e8ec5b --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussInviteRateMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussInviteRate; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussInviteRateMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussInviteRate record); + + int insertSelective(TbPlussInviteRate record); + + TbPlussInviteRate selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussInviteRate record); + + int updateByPrimaryKey(TbPlussInviteRate record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussIpLocationCacheMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussIpLocationCacheMapper.java new file mode 100644 index 0000000..2c3acc8 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussIpLocationCacheMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussIpLocationCache; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussIpLocationCacheMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussIpLocationCache record); + + int insertSelective(TbPlussIpLocationCache record); + + TbPlussIpLocationCache selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussIpLocationCache record); + + int updateByPrimaryKey(TbPlussIpLocationCache record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftBankCardMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftBankCardMapper.java new file mode 100644 index 0000000..5979a30 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftBankCardMapper.java @@ -0,0 +1,24 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussJftBankCard; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussJftBankCardMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussJftBankCard record); + + int insertSelective(TbPlussJftBankCard record); + + TbPlussJftBankCard selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussJftBankCard record); + + int updateByPrimaryKeyWithBLOBs(TbPlussJftBankCard record); + + int updateByPrimaryKey(TbPlussJftBankCard record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftMercBaseInfoMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftMercBaseInfoMapper.java new file mode 100644 index 0000000..02cc9d8 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftMercBaseInfoMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussJftMercBaseInfo; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussJftMercBaseInfoMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussJftMercBaseInfo record); + + int insertSelective(TbPlussJftMercBaseInfo record); + + TbPlussJftMercBaseInfo selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussJftMercBaseInfo record); + + int updateByPrimaryKey(TbPlussJftMercBaseInfo record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftMercPaymentChannelMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftMercPaymentChannelMapper.java new file mode 100644 index 0000000..ec14946 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftMercPaymentChannelMapper.java @@ -0,0 +1,24 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussJftMercPaymentChannel; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussJftMercPaymentChannelMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussJftMercPaymentChannel record); + + int insertSelective(TbPlussJftMercPaymentChannel record); + + TbPlussJftMercPaymentChannel selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussJftMercPaymentChannel record); + + int updateByPrimaryKeyWithBLOBs(TbPlussJftMercPaymentChannel record); + + int updateByPrimaryKey(TbPlussJftMercPaymentChannel record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftMerchantRateMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftMerchantRateMapper.java new file mode 100644 index 0000000..35408ce --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftMerchantRateMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussJftMerchantRate; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussJftMerchantRateMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussJftMerchantRate record); + + int insertSelective(TbPlussJftMerchantRate record); + + TbPlussJftMerchantRate selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussJftMerchantRate record); + + int updateByPrimaryKey(TbPlussJftMerchantRate record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftMerchantRateRecordMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftMerchantRateRecordMapper.java new file mode 100644 index 0000000..559e53d --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftMerchantRateRecordMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussJftMerchantRateRecord; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussJftMerchantRateRecordMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussJftMerchantRateRecord record); + + int insertSelective(TbPlussJftMerchantRateRecord record); + + TbPlussJftMerchantRateRecord selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussJftMerchantRateRecord record); + + int updateByPrimaryKey(TbPlussJftMerchantRateRecord record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftPaymentInfoMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftPaymentInfoMapper.java new file mode 100644 index 0000000..9d389fc --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftPaymentInfoMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussJftPaymentInfo; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussJftPaymentInfoMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussJftPaymentInfo record); + + int insertSelective(TbPlussJftPaymentInfo record); + + TbPlussJftPaymentInfo selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussJftPaymentInfo record); + + int updateByPrimaryKey(TbPlussJftPaymentInfo record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftReceiptInfoMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftReceiptInfoMapper.java new file mode 100644 index 0000000..9860fe7 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftReceiptInfoMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussJftReceiptInfo; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussJftReceiptInfoMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussJftReceiptInfo record); + + int insertSelective(TbPlussJftReceiptInfo record); + + TbPlussJftReceiptInfo selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussJftReceiptInfo record); + + int updateByPrimaryKey(TbPlussJftReceiptInfo record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftReceiptOrderMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftReceiptOrderMapper.java new file mode 100644 index 0000000..8f42352 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftReceiptOrderMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussJftReceiptOrder; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussJftReceiptOrderMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussJftReceiptOrder record); + + int insertSelective(TbPlussJftReceiptOrder record); + + TbPlussJftReceiptOrder selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussJftReceiptOrder record); + + int updateByPrimaryKey(TbPlussJftReceiptOrder record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftReceiptPaymentMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftReceiptPaymentMapper.java new file mode 100644 index 0000000..013df8d --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftReceiptPaymentMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussJftReceiptPayment; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussJftReceiptPaymentMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussJftReceiptPayment record); + + int insertSelective(TbPlussJftReceiptPayment record); + + TbPlussJftReceiptPayment selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussJftReceiptPayment record); + + int updateByPrimaryKey(TbPlussJftReceiptPayment record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftSmallClassMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftSmallClassMapper.java new file mode 100644 index 0000000..eadd57e --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussJftSmallClassMapper.java @@ -0,0 +1,24 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussJftSmallClass; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussJftSmallClassMapper { + int deleteByPrimaryKey(Byte id); + + int insert(TbPlussJftSmallClass record); + + int insertSelective(TbPlussJftSmallClass record); + + TbPlussJftSmallClass selectByPrimaryKey(Byte id); + + int updateByPrimaryKeySelective(TbPlussJftSmallClass record); + + int updateByPrimaryKeyWithBLOBs(TbPlussJftSmallClass record); + + int updateByPrimaryKey(TbPlussJftSmallClass record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussLeshuaMakeMoneyMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussLeshuaMakeMoneyMapper.java new file mode 100644 index 0000000..bc93c10 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussLeshuaMakeMoneyMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussLeshuaMakeMoney; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussLeshuaMakeMoneyMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussLeshuaMakeMoney record); + + int insertSelective(TbPlussLeshuaMakeMoney record); + + TbPlussLeshuaMakeMoney selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussLeshuaMakeMoney record); + + int updateByPrimaryKey(TbPlussLeshuaMakeMoney record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussLevelMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussLevelMapper.java new file mode 100644 index 0000000..7ce6f27 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussLevelMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussLevel; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussLevelMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussLevel record); + + int insertSelective(TbPlussLevel record); + + TbPlussLevel selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussLevel record); + + int updateByPrimaryKey(TbPlussLevel record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussLevelOperateRecordMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussLevelOperateRecordMapper.java new file mode 100644 index 0000000..56e2c6b --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussLevelOperateRecordMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussLevelOperateRecord; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussLevelOperateRecordMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussLevelOperateRecord record); + + int insertSelective(TbPlussLevelOperateRecord record); + + TbPlussLevelOperateRecord selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussLevelOperateRecord record); + + int updateByPrimaryKey(TbPlussLevelOperateRecord record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMakeMoneyMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMakeMoneyMapper.java new file mode 100644 index 0000000..d157a42 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMakeMoneyMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMakeMoney; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMakeMoneyMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMakeMoney record); + + int insertSelective(TbPlussMakeMoney record); + + TbPlussMakeMoney selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMakeMoney record); + + int updateByPrimaryKey(TbPlussMakeMoney record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMccInfoMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMccInfoMapper.java new file mode 100644 index 0000000..4691971 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMccInfoMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMccInfo; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMccInfoMapper { + int deleteByPrimaryKey(Integer fId); + + int insert(TbPlussMccInfo record); + + int insertSelective(TbPlussMccInfo record); + + TbPlussMccInfo selectByPrimaryKey(Integer fId); + + int updateByPrimaryKeySelective(TbPlussMccInfo record); + + int updateByPrimaryKey(TbPlussMccInfo record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMccInfoRyxMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMccInfoRyxMapper.java new file mode 100644 index 0000000..95ad6df --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMccInfoRyxMapper.java @@ -0,0 +1,14 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMccInfoRyx; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMccInfoRyxMapper { + int insert(TbPlussMccInfoRyx record); + + int insertSelective(TbPlussMccInfoRyx record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMccInfoSortMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMccInfoSortMapper.java new file mode 100644 index 0000000..57e8dd0 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMccInfoSortMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMccInfoSort; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMccInfoSortMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMccInfoSort record); + + int insertSelective(TbPlussMccInfoSort record); + + TbPlussMccInfoSort selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMccInfoSort record); + + int updateByPrimaryKey(TbPlussMccInfoSort record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMccInfoYsMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMccInfoYsMapper.java new file mode 100644 index 0000000..5046408 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMccInfoYsMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMccInfoYs; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMccInfoYsMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMccInfoYs record); + + int insertSelective(TbPlussMccInfoYs record); + + TbPlussMccInfoYs selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMccInfoYs record); + + int updateByPrimaryKey(TbPlussMccInfoYs record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMccReflectMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMccReflectMapper.java new file mode 100644 index 0000000..34d4aa6 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMccReflectMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMccReflect; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMccReflectMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMccReflect record); + + int insertSelective(TbPlussMccReflect record); + + TbPlussMccReflect selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMccReflect record); + + int updateByPrimaryKey(TbPlussMccReflect record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMemberOrderMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMemberOrderMapper.java new file mode 100644 index 0000000..8605fdb --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMemberOrderMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMemberOrder; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMemberOrderMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMemberOrder record); + + int insertSelective(TbPlussMemberOrder record); + + TbPlussMemberOrder selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMemberOrder record); + + int updateByPrimaryKey(TbPlussMemberOrder record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMemberSettingMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMemberSettingMapper.java new file mode 100644 index 0000000..102c739 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMemberSettingMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMemberSetting; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMemberSettingMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMemberSetting record); + + int insertSelective(TbPlussMemberSetting record); + + TbPlussMemberSetting selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMemberSetting record); + + int updateByPrimaryKey(TbPlussMemberSetting record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMemberTransStatisticsMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMemberTransStatisticsMapper.java new file mode 100644 index 0000000..aaa91f5 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMemberTransStatisticsMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMemberTransStatistics; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMemberTransStatisticsMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMemberTransStatistics record); + + int insertSelective(TbPlussMemberTransStatistics record); + + TbPlussMemberTransStatistics selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMemberTransStatistics record); + + int updateByPrimaryKey(TbPlussMemberTransStatistics record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMenuInfoMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMenuInfoMapper.java new file mode 100644 index 0000000..b4ec7d4 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMenuInfoMapper.java @@ -0,0 +1,25 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMenuInfo; +import com.chaozhanggui.dao.system.entity.TbPlussMenuInfoWithBLOBs; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMenuInfoMapper { + int deleteByPrimaryKey(Long id); + + int insert(TbPlussMenuInfoWithBLOBs record); + + int insertSelective(TbPlussMenuInfoWithBLOBs record); + + TbPlussMenuInfoWithBLOBs selectByPrimaryKey(Long id); + + int updateByPrimaryKeySelective(TbPlussMenuInfoWithBLOBs record); + + int updateByPrimaryKeyWithBLOBs(TbPlussMenuInfoWithBLOBs record); + + int updateByPrimaryKey(TbPlussMenuInfo record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMercDeviceRefundImageMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMercDeviceRefundImageMapper.java new file mode 100644 index 0000000..11b680c --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMercDeviceRefundImageMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMercDeviceRefundImage; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMercDeviceRefundImageMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMercDeviceRefundImage record); + + int insertSelective(TbPlussMercDeviceRefundImage record); + + TbPlussMercDeviceRefundImage selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMercDeviceRefundImage record); + + int updateByPrimaryKey(TbPlussMercDeviceRefundImage record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMercMemberSetMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMercMemberSetMapper.java new file mode 100644 index 0000000..359fe4e --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMercMemberSetMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMercMemberSet; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMercMemberSetMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMercMemberSet record); + + int insertSelective(TbPlussMercMemberSet record); + + TbPlussMercMemberSet selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMercMemberSet record); + + int updateByPrimaryKey(TbPlussMercMemberSet record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMercOrderDetailMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMercOrderDetailMapper.java new file mode 100644 index 0000000..565612e --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMercOrderDetailMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMercOrderDetail; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMercOrderDetailMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMercOrderDetail record); + + int insertSelective(TbPlussMercOrderDetail record); + + TbPlussMercOrderDetail selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMercOrderDetail record); + + int updateByPrimaryKey(TbPlussMercOrderDetail record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMercOrderExpressDetailMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMercOrderExpressDetailMapper.java new file mode 100644 index 0000000..ed7c8e4 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMercOrderExpressDetailMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMercOrderExpressDetail; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMercOrderExpressDetailMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMercOrderExpressDetail record); + + int insertSelective(TbPlussMercOrderExpressDetail record); + + TbPlussMercOrderExpressDetail selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMercOrderExpressDetail record); + + int updateByPrimaryKey(TbPlussMercOrderExpressDetail record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMercOrderExpressMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMercOrderExpressMapper.java new file mode 100644 index 0000000..9aa3cd0 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMercOrderExpressMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMercOrderExpress; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMercOrderExpressMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMercOrderExpress record); + + int insertSelective(TbPlussMercOrderExpress record); + + TbPlussMercOrderExpress selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMercOrderExpress record); + + int updateByPrimaryKey(TbPlussMercOrderExpress record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMercOrderNewMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMercOrderNewMapper.java new file mode 100644 index 0000000..478045a --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMercOrderNewMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMercOrderNew; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMercOrderNewMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMercOrderNew record); + + int insertSelective(TbPlussMercOrderNew record); + + TbPlussMercOrderNew selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMercOrderNew record); + + int updateByPrimaryKey(TbPlussMercOrderNew record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMercOrderTokenMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMercOrderTokenMapper.java new file mode 100644 index 0000000..659a922 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMercOrderTokenMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMercOrderToken; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMercOrderTokenMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMercOrderToken record); + + int insertSelective(TbPlussMercOrderToken record); + + TbPlussMercOrderToken selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMercOrderToken record); + + int updateByPrimaryKey(TbPlussMercOrderToken record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMercShopTrolleyMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMercShopTrolleyMapper.java new file mode 100644 index 0000000..241ae63 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMercShopTrolleyMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMercShopTrolley; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMercShopTrolleyMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMercShopTrolley record); + + int insertSelective(TbPlussMercShopTrolley record); + + TbPlussMercShopTrolley selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMercShopTrolley record); + + int updateByPrimaryKey(TbPlussMercShopTrolley record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantAddressMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantAddressMapper.java new file mode 100644 index 0000000..9693571 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantAddressMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantAddress; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantAddressMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantAddress record); + + int insertSelective(TbPlussMerchantAddress record); + + TbPlussMerchantAddress selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantAddress record); + + int updateByPrimaryKey(TbPlussMerchantAddress record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantAuditRecordMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantAuditRecordMapper.java new file mode 100644 index 0000000..53986a1 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantAuditRecordMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantAuditRecord; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantAuditRecordMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantAuditRecord record); + + int insertSelective(TbPlussMerchantAuditRecord record); + + TbPlussMerchantAuditRecord selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantAuditRecord record); + + int updateByPrimaryKey(TbPlussMerchantAuditRecord record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantBackLklMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantBackLklMapper.java new file mode 100644 index 0000000..bde30f6 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantBackLklMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantBackLkl; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantBackLklMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantBackLkl record); + + int insertSelective(TbPlussMerchantBackLkl record); + + TbPlussMerchantBackLkl selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantBackLkl record); + + int updateByPrimaryKey(TbPlussMerchantBackLkl record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantBankCardMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantBankCardMapper.java new file mode 100644 index 0000000..ff4448a --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantBankCardMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantBankCard; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantBankCardMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantBankCard record); + + int insertSelective(TbPlussMerchantBankCard record); + + TbPlussMerchantBankCard selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantBankCard record); + + int updateByPrimaryKey(TbPlussMerchantBankCard record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantBaseInfoMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantBaseInfoMapper.java new file mode 100644 index 0000000..62412ee --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantBaseInfoMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantBaseInfo; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantBaseInfoMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantBaseInfo record); + + int insertSelective(TbPlussMerchantBaseInfo record); + + TbPlussMerchantBaseInfo selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantBaseInfo record); + + int updateByPrimaryKey(TbPlussMerchantBaseInfo record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantBillStatisticsMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantBillStatisticsMapper.java new file mode 100644 index 0000000..5a9334e --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantBillStatisticsMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantBillStatistics; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantBillStatisticsMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantBillStatistics record); + + int insertSelective(TbPlussMerchantBillStatistics record); + + TbPlussMerchantBillStatistics selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantBillStatistics record); + + int updateByPrimaryKey(TbPlussMerchantBillStatistics record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantCashPayCodeMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantCashPayCodeMapper.java new file mode 100644 index 0000000..bb29385 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantCashPayCodeMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantCashPayCode; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantCashPayCodeMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantCashPayCode record); + + int insertSelective(TbPlussMerchantCashPayCode record); + + TbPlussMerchantCashPayCode selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantCashPayCode record); + + int updateByPrimaryKey(TbPlussMerchantCashPayCode record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantCashPlaceMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantCashPlaceMapper.java new file mode 100644 index 0000000..4a5a543 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantCashPlaceMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantCashPlace; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantCashPlaceMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantCashPlace record); + + int insertSelective(TbPlussMerchantCashPlace record); + + TbPlussMerchantCashPlace selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantCashPlace record); + + int updateByPrimaryKey(TbPlussMerchantCashPlace record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantCashPlaceStaffMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantCashPlaceStaffMapper.java new file mode 100644 index 0000000..0ccbe49 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantCashPlaceStaffMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantCashPlaceStaff; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantCashPlaceStaffMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantCashPlaceStaff record); + + int insertSelective(TbPlussMerchantCashPlaceStaff record); + + TbPlussMerchantCashPlaceStaff selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantCashPlaceStaff record); + + int updateByPrimaryKey(TbPlussMerchantCashPlaceStaff record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantChannelFeeMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantChannelFeeMapper.java new file mode 100644 index 0000000..ad37f13 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantChannelFeeMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantChannelFee; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantChannelFeeMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantChannelFee record); + + int insertSelective(TbPlussMerchantChannelFee record); + + TbPlussMerchantChannelFee selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantChannelFee record); + + int updateByPrimaryKey(TbPlussMerchantChannelFee record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantChannelImgBakMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantChannelImgBakMapper.java new file mode 100644 index 0000000..7bdd79f --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantChannelImgBakMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantChannelImgBak; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantChannelImgBakMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantChannelImgBak record); + + int insertSelective(TbPlussMerchantChannelImgBak record); + + TbPlussMerchantChannelImgBak selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantChannelImgBak record); + + int updateByPrimaryKey(TbPlussMerchantChannelImgBak record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantChannelImgMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantChannelImgMapper.java new file mode 100644 index 0000000..b158394 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantChannelImgMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantChannelImg; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantChannelImgMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantChannelImg record); + + int insertSelective(TbPlussMerchantChannelImg record); + + TbPlussMerchantChannelImg selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantChannelImg record); + + int updateByPrimaryKey(TbPlussMerchantChannelImg record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantChannelMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantChannelMapper.java new file mode 100644 index 0000000..754029b --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantChannelMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantChannel; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantChannelMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantChannel record); + + int insertSelective(TbPlussMerchantChannel record); + + TbPlussMerchantChannel selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantChannel record); + + int updateByPrimaryKey(TbPlussMerchantChannel record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantChannelStatusMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantChannelStatusMapper.java new file mode 100644 index 0000000..ed7259d --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantChannelStatusMapper.java @@ -0,0 +1,24 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantChannelStatus; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantChannelStatusMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantChannelStatus record); + + int insertSelective(TbPlussMerchantChannelStatus record); + + TbPlussMerchantChannelStatus selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantChannelStatus record); + + int updateByPrimaryKeyWithBLOBs(TbPlussMerchantChannelStatus record); + + int updateByPrimaryKey(TbPlussMerchantChannelStatus record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantComplaintImageMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantComplaintImageMapper.java new file mode 100644 index 0000000..c108025 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantComplaintImageMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantComplaintImage; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantComplaintImageMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantComplaintImage record); + + int insertSelective(TbPlussMerchantComplaintImage record); + + TbPlussMerchantComplaintImage selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantComplaintImage record); + + int updateByPrimaryKey(TbPlussMerchantComplaintImage record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantComplaintRecordMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantComplaintRecordMapper.java new file mode 100644 index 0000000..06e8099 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantComplaintRecordMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantComplaintRecord; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantComplaintRecordMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantComplaintRecord record); + + int insertSelective(TbPlussMerchantComplaintRecord record); + + TbPlussMerchantComplaintRecord selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantComplaintRecord record); + + int updateByPrimaryKey(TbPlussMerchantComplaintRecord record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantDeviceMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantDeviceMapper.java new file mode 100644 index 0000000..714bc21 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantDeviceMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantDevice; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantDeviceMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantDevice record); + + int insertSelective(TbPlussMerchantDevice record); + + TbPlussMerchantDevice selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantDevice record); + + int updateByPrimaryKey(TbPlussMerchantDevice record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantGuideMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantGuideMapper.java new file mode 100644 index 0000000..09e3a34 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantGuideMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantGuide; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantGuideMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantGuide record); + + int insertSelective(TbPlussMerchantGuide record); + + TbPlussMerchantGuide selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantGuide record); + + int updateByPrimaryKey(TbPlussMerchantGuide record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantImageMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantImageMapper.java new file mode 100644 index 0000000..0979905 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantImageMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantImage; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantImageMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantImage record); + + int insertSelective(TbPlussMerchantImage record); + + TbPlussMerchantImage selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantImage record); + + int updateByPrimaryKey(TbPlussMerchantImage record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantIncomeMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantIncomeMapper.java new file mode 100644 index 0000000..3f094a2 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantIncomeMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantIncome; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantIncomeMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantIncome record); + + int insertSelective(TbPlussMerchantIncome record); + + TbPlussMerchantIncome selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantIncome record); + + int updateByPrimaryKey(TbPlussMerchantIncome record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantLklMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantLklMapper.java new file mode 100644 index 0000000..5ce59e8 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantLklMapper.java @@ -0,0 +1,14 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantLkl; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantLklMapper { + int insert(TbPlussMerchantLkl record); + + int insertSelective(TbPlussMerchantLkl record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantMarketMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantMarketMapper.java new file mode 100644 index 0000000..84e2748 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantMarketMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantMarket; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantMarketMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantMarket record); + + int insertSelective(TbPlussMerchantMarket record); + + TbPlussMerchantMarket selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantMarket record); + + int updateByPrimaryKey(TbPlussMerchantMarket record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantMemberCodeMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantMemberCodeMapper.java new file mode 100644 index 0000000..eceb46e --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantMemberCodeMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantMemberCode; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantMemberCodeMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantMemberCode record); + + int insertSelective(TbPlussMerchantMemberCode record); + + TbPlussMerchantMemberCode selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantMemberCode record); + + int updateByPrimaryKey(TbPlussMerchantMemberCode record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantMenberComsumeMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantMenberComsumeMapper.java new file mode 100644 index 0000000..cbe3be7 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantMenberComsumeMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantMenberComsume; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantMenberComsumeMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantMenberComsume record); + + int insertSelective(TbPlussMerchantMenberComsume record); + + TbPlussMerchantMenberComsume selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantMenberComsume record); + + int updateByPrimaryKey(TbPlussMerchantMenberComsume record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantMenberMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantMenberMapper.java new file mode 100644 index 0000000..f7506aa --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantMenberMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantMenber; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantMenberMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantMenber record); + + int insertSelective(TbPlussMerchantMenber record); + + TbPlussMerchantMenber selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantMenber record); + + int updateByPrimaryKey(TbPlussMerchantMenber record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantMenberRechargeMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantMenberRechargeMapper.java new file mode 100644 index 0000000..60e6b33 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantMenberRechargeMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantMenberRecharge; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantMenberRechargeMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantMenberRecharge record); + + int insertSelective(TbPlussMerchantMenberRecharge record); + + TbPlussMerchantMenberRecharge selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantMenberRecharge record); + + int updateByPrimaryKey(TbPlussMerchantMenberRecharge record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantMoveRecordsMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantMoveRecordsMapper.java new file mode 100644 index 0000000..a9ce9ec --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantMoveRecordsMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantMoveRecords; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantMoveRecordsMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantMoveRecords record); + + int insertSelective(TbPlussMerchantMoveRecords record); + + TbPlussMerchantMoveRecords selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantMoveRecords record); + + int updateByPrimaryKey(TbPlussMerchantMoveRecords record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantMoveSettingMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantMoveSettingMapper.java new file mode 100644 index 0000000..93bdd96 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantMoveSettingMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantMoveSetting; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantMoveSettingMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantMoveSetting record); + + int insertSelective(TbPlussMerchantMoveSetting record); + + TbPlussMerchantMoveSetting selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantMoveSetting record); + + int updateByPrimaryKey(TbPlussMerchantMoveSetting record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantOrderMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantOrderMapper.java new file mode 100644 index 0000000..b17dd4a --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantOrderMapper.java @@ -0,0 +1,24 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantOrder; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantOrderMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantOrder record); + + int insertSelective(TbPlussMerchantOrder record); + + TbPlussMerchantOrder selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantOrder record); + + int updateByPrimaryKeyWithBLOBs(TbPlussMerchantOrder record); + + int updateByPrimaryKey(TbPlussMerchantOrder record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantOrderOldLsMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantOrderOldLsMapper.java new file mode 100644 index 0000000..ccc8c6f --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantOrderOldLsMapper.java @@ -0,0 +1,24 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantOrderOldLs; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantOrderOldLsMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantOrderOldLs record); + + int insertSelective(TbPlussMerchantOrderOldLs record); + + TbPlussMerchantOrderOldLs selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantOrderOldLs record); + + int updateByPrimaryKeyWithBLOBs(TbPlussMerchantOrderOldLs record); + + int updateByPrimaryKey(TbPlussMerchantOrderOldLs record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantOrderSplitDetailMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantOrderSplitDetailMapper.java new file mode 100644 index 0000000..dbba251 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantOrderSplitDetailMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantOrderSplitDetail; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantOrderSplitDetailMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantOrderSplitDetail record); + + int insertSelective(TbPlussMerchantOrderSplitDetail record); + + TbPlussMerchantOrderSplitDetail selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantOrderSplitDetail record); + + int updateByPrimaryKey(TbPlussMerchantOrderSplitDetail record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantOrderSplitMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantOrderSplitMapper.java new file mode 100644 index 0000000..1cefbdd --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantOrderSplitMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantOrderSplit; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantOrderSplitMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantOrderSplit record); + + int insertSelective(TbPlussMerchantOrderSplit record); + + TbPlussMerchantOrderSplit selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantOrderSplit record); + + int updateByPrimaryKey(TbPlussMerchantOrderSplit record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantOrderSplitRefundMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantOrderSplitRefundMapper.java new file mode 100644 index 0000000..459a856 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantOrderSplitRefundMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantOrderSplitRefund; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantOrderSplitRefundMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantOrderSplitRefund record); + + int insertSelective(TbPlussMerchantOrderSplitRefund record); + + TbPlussMerchantOrderSplitRefund selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantOrderSplitRefund record); + + int updateByPrimaryKey(TbPlussMerchantOrderSplitRefund record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantOrderStaffMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantOrderStaffMapper.java new file mode 100644 index 0000000..bf10b23 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantOrderStaffMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantOrderStaff; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantOrderStaffMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantOrderStaff record); + + int insertSelective(TbPlussMerchantOrderStaff record); + + TbPlussMerchantOrderStaff selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantOrderStaff record); + + int updateByPrimaryKey(TbPlussMerchantOrderStaff record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantOrderStatisticsMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantOrderStatisticsMapper.java new file mode 100644 index 0000000..7da5028 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantOrderStatisticsMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantOrderStatistics; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantOrderStatisticsMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantOrderStatistics record); + + int insertSelective(TbPlussMerchantOrderStatistics record); + + TbPlussMerchantOrderStatistics selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantOrderStatistics record); + + int updateByPrimaryKey(TbPlussMerchantOrderStatistics record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantPluginMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantPluginMapper.java new file mode 100644 index 0000000..e05fe2e --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantPluginMapper.java @@ -0,0 +1,24 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantPlugin; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantPluginMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantPlugin record); + + int insertSelective(TbPlussMerchantPlugin record); + + TbPlussMerchantPlugin selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantPlugin record); + + int updateByPrimaryKeyWithBLOBs(TbPlussMerchantPlugin record); + + int updateByPrimaryKey(TbPlussMerchantPlugin record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantProfitMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantProfitMapper.java new file mode 100644 index 0000000..79c5b72 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantProfitMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantProfit; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantProfitMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantProfit record); + + int insertSelective(TbPlussMerchantProfit record); + + TbPlussMerchantProfit selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantProfit record); + + int updateByPrimaryKey(TbPlussMerchantProfit record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantQrcodeMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantQrcodeMapper.java new file mode 100644 index 0000000..d99f696 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantQrcodeMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantQrcode; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantQrcodeMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantQrcode record); + + int insertSelective(TbPlussMerchantQrcode record); + + TbPlussMerchantQrcode selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantQrcode record); + + int updateByPrimaryKey(TbPlussMerchantQrcode record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantRateMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantRateMapper.java new file mode 100644 index 0000000..d44fdc4 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantRateMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantRate; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantRateMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantRate record); + + int insertSelective(TbPlussMerchantRate record); + + TbPlussMerchantRate selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantRate record); + + int updateByPrimaryKey(TbPlussMerchantRate record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantRateNewMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantRateNewMapper.java new file mode 100644 index 0000000..1796dc4 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantRateNewMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantRateNew; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantRateNewMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantRateNew record); + + int insertSelective(TbPlussMerchantRateNew record); + + TbPlussMerchantRateNew selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantRateNew record); + + int updateByPrimaryKey(TbPlussMerchantRateNew record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantRateNewRecordMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantRateNewRecordMapper.java new file mode 100644 index 0000000..c83745a --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantRateNewRecordMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantRateNewRecord; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantRateNewRecordMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantRateNewRecord record); + + int insertSelective(TbPlussMerchantRateNewRecord record); + + TbPlussMerchantRateNewRecord selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantRateNewRecord record); + + int updateByPrimaryKey(TbPlussMerchantRateNewRecord record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantRateRecordMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantRateRecordMapper.java new file mode 100644 index 0000000..198b08c --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantRateRecordMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantRateRecord; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantRateRecordMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantRateRecord record); + + int insertSelective(TbPlussMerchantRateRecord record); + + TbPlussMerchantRateRecord selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantRateRecord record); + + int updateByPrimaryKey(TbPlussMerchantRateRecord record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantRefundOrderMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantRefundOrderMapper.java new file mode 100644 index 0000000..31d6967 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantRefundOrderMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantRefundOrder; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantRefundOrderMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantRefundOrder record); + + int insertSelective(TbPlussMerchantRefundOrder record); + + TbPlussMerchantRefundOrder selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantRefundOrder record); + + int updateByPrimaryKey(TbPlussMerchantRefundOrder record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantRegistAuditRecordMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantRegistAuditRecordMapper.java new file mode 100644 index 0000000..3a3a3fa --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantRegistAuditRecordMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantRegistAuditRecord; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantRegistAuditRecordMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantRegistAuditRecord record); + + int insertSelective(TbPlussMerchantRegistAuditRecord record); + + TbPlussMerchantRegistAuditRecord selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantRegistAuditRecord record); + + int updateByPrimaryKey(TbPlussMerchantRegistAuditRecord record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantRegistLogMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantRegistLogMapper.java new file mode 100644 index 0000000..2ddd35d --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantRegistLogMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantRegistLog; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantRegistLogMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantRegistLog record); + + int insertSelective(TbPlussMerchantRegistLog record); + + TbPlussMerchantRegistLog selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantRegistLog record); + + int updateByPrimaryKey(TbPlussMerchantRegistLog record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantRejectDescMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantRejectDescMapper.java new file mode 100644 index 0000000..1365692 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantRejectDescMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantRejectDesc; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantRejectDescMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantRejectDesc record); + + int insertSelective(TbPlussMerchantRejectDesc record); + + TbPlussMerchantRejectDesc selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantRejectDesc record); + + int updateByPrimaryKey(TbPlussMerchantRejectDesc record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantSplitSettingMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantSplitSettingMapper.java new file mode 100644 index 0000000..61c088b --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantSplitSettingMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantSplitSetting; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantSplitSettingMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantSplitSetting record); + + int insertSelective(TbPlussMerchantSplitSetting record); + + TbPlussMerchantSplitSetting selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantSplitSetting record); + + int updateByPrimaryKey(TbPlussMerchantSplitSetting record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantStaffConnMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantStaffConnMapper.java new file mode 100644 index 0000000..b31335b --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantStaffConnMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantStaffConn; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantStaffConnMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantStaffConn record); + + int insertSelective(TbPlussMerchantStaffConn record); + + TbPlussMerchantStaffConn selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantStaffConn record); + + int updateByPrimaryKey(TbPlussMerchantStaffConn record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantStoreMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantStoreMapper.java new file mode 100644 index 0000000..3ef5ef3 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantStoreMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantStore; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantStoreMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantStore record); + + int insertSelective(TbPlussMerchantStore record); + + TbPlussMerchantStore selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantStore record); + + int updateByPrimaryKey(TbPlussMerchantStore record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantTransferCashMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantTransferCashMapper.java new file mode 100644 index 0000000..baf95e9 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantTransferCashMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantTransferCash; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantTransferCashMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantTransferCash record); + + int insertSelective(TbPlussMerchantTransferCash record); + + TbPlussMerchantTransferCash selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantTransferCash record); + + int updateByPrimaryKey(TbPlussMerchantTransferCash record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantTransferMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantTransferMapper.java new file mode 100644 index 0000000..b490c26 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussMerchantTransferMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussMerchantTransfer; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussMerchantTransferMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussMerchantTransfer record); + + int insertSelective(TbPlussMerchantTransfer record); + + TbPlussMerchantTransfer selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussMerchantTransfer record); + + int updateByPrimaryKey(TbPlussMerchantTransfer record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussNewAreaMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussNewAreaMapper.java new file mode 100644 index 0000000..e6e2a35 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussNewAreaMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussNewArea; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussNewAreaMapper { + int deleteByPrimaryKey(Long id); + + int insert(TbPlussNewArea record); + + int insertSelective(TbPlussNewArea record); + + TbPlussNewArea selectByPrimaryKey(Long id); + + int updateByPrimaryKeySelective(TbPlussNewArea record); + + int updateByPrimaryKey(TbPlussNewArea record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussNewMccInfoMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussNewMccInfoMapper.java new file mode 100644 index 0000000..8ecfe53 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussNewMccInfoMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussNewMccInfo; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussNewMccInfoMapper { + int deleteByPrimaryKey(Integer fId); + + int insert(TbPlussNewMccInfo record); + + int insertSelective(TbPlussNewMccInfo record); + + TbPlussNewMccInfo selectByPrimaryKey(Integer fId); + + int updateByPrimaryKeySelective(TbPlussNewMccInfo record); + + int updateByPrimaryKey(TbPlussNewMccInfo record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussNoticeMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussNoticeMapper.java new file mode 100644 index 0000000..392a97b --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussNoticeMapper.java @@ -0,0 +1,24 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussNotice; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussNoticeMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussNotice record); + + int insertSelective(TbPlussNotice record); + + TbPlussNotice selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussNotice record); + + int updateByPrimaryKeyWithBLOBs(TbPlussNotice record); + + int updateByPrimaryKey(TbPlussNotice record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussNoticeReadRecordMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussNoticeReadRecordMapper.java new file mode 100644 index 0000000..00fddb1 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussNoticeReadRecordMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussNoticeReadRecord; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussNoticeReadRecordMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussNoticeReadRecord record); + + int insertSelective(TbPlussNoticeReadRecord record); + + TbPlussNoticeReadRecord selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussNoticeReadRecord record); + + int updateByPrimaryKey(TbPlussNoticeReadRecord record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussNoticeTemplateMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussNoticeTemplateMapper.java new file mode 100644 index 0000000..4e52721 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussNoticeTemplateMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussNoticeTemplate; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussNoticeTemplateMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussNoticeTemplate record); + + int insertSelective(TbPlussNoticeTemplate record); + + TbPlussNoticeTemplate selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussNoticeTemplate record); + + int updateByPrimaryKey(TbPlussNoticeTemplate record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussNotificationMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussNotificationMapper.java new file mode 100644 index 0000000..2e5bdf2 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussNotificationMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussNotification; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussNotificationMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussNotification record); + + int insertSelective(TbPlussNotification record); + + TbPlussNotification selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussNotification record); + + int updateByPrimaryKey(TbPlussNotification record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussOfficialActivityMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussOfficialActivityMapper.java new file mode 100644 index 0000000..ce9308d --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussOfficialActivityMapper.java @@ -0,0 +1,24 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussOfficialActivity; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussOfficialActivityMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussOfficialActivity record); + + int insertSelective(TbPlussOfficialActivity record); + + TbPlussOfficialActivity selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussOfficialActivity record); + + int updateByPrimaryKeyWithBLOBs(TbPlussOfficialActivity record); + + int updateByPrimaryKey(TbPlussOfficialActivity record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussOfficialGoodsExchangeMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussOfficialGoodsExchangeMapper.java new file mode 100644 index 0000000..47b19db --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussOfficialGoodsExchangeMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussOfficialGoodsExchange; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussOfficialGoodsExchangeMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussOfficialGoodsExchange record); + + int insertSelective(TbPlussOfficialGoodsExchange record); + + TbPlussOfficialGoodsExchange selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussOfficialGoodsExchange record); + + int updateByPrimaryKey(TbPlussOfficialGoodsExchange record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussOfficialGoodsMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussOfficialGoodsMapper.java new file mode 100644 index 0000000..007c7b2 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussOfficialGoodsMapper.java @@ -0,0 +1,24 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussOfficialGoods; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussOfficialGoodsMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussOfficialGoods record); + + int insertSelective(TbPlussOfficialGoods record); + + TbPlussOfficialGoods selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussOfficialGoods record); + + int updateByPrimaryKeyWithBLOBs(TbPlussOfficialGoods record); + + int updateByPrimaryKey(TbPlussOfficialGoods record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussOpenAccountConfigMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussOpenAccountConfigMapper.java new file mode 100644 index 0000000..6be33d8 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussOpenAccountConfigMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussOpenAccountConfig; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussOpenAccountConfigMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussOpenAccountConfig record); + + int insertSelective(TbPlussOpenAccountConfig record); + + TbPlussOpenAccountConfig selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussOpenAccountConfig record); + + int updateByPrimaryKey(TbPlussOpenAccountConfig record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussOpenAccountRecordMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussOpenAccountRecordMapper.java new file mode 100644 index 0000000..add40b1 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussOpenAccountRecordMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussOpenAccountRecord; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussOpenAccountRecordMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussOpenAccountRecord record); + + int insertSelective(TbPlussOpenAccountRecord record); + + TbPlussOpenAccountRecord selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussOpenAccountRecord record); + + int updateByPrimaryKey(TbPlussOpenAccountRecord record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussOperationRecordMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussOperationRecordMapper.java new file mode 100644 index 0000000..953d413 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussOperationRecordMapper.java @@ -0,0 +1,24 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussOperationRecord; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussOperationRecordMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussOperationRecord record); + + int insertSelective(TbPlussOperationRecord record); + + TbPlussOperationRecord selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussOperationRecord record); + + int updateByPrimaryKeyWithBLOBs(TbPlussOperationRecord record); + + int updateByPrimaryKey(TbPlussOperationRecord record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussPayAreaRyxMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussPayAreaRyxMapper.java new file mode 100644 index 0000000..f090e0e --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussPayAreaRyxMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussPayAreaRyx; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussPayAreaRyxMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussPayAreaRyx record); + + int insertSelective(TbPlussPayAreaRyx record); + + TbPlussPayAreaRyx selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussPayAreaRyx record); + + int updateByPrimaryKey(TbPlussPayAreaRyx record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussPhoneConfigMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussPhoneConfigMapper.java new file mode 100644 index 0000000..a4bda5a --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussPhoneConfigMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussPhoneConfig; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussPhoneConfigMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussPhoneConfig record); + + int insertSelective(TbPlussPhoneConfig record); + + TbPlussPhoneConfig selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussPhoneConfig record); + + int updateByPrimaryKey(TbPlussPhoneConfig record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussPhoneValidateCodeMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussPhoneValidateCodeMapper.java new file mode 100644 index 0000000..e85ae53 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussPhoneValidateCodeMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussPhoneValidateCode; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussPhoneValidateCodeMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussPhoneValidateCode record); + + int insertSelective(TbPlussPhoneValidateCode record); + + TbPlussPhoneValidateCode selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussPhoneValidateCode record); + + int updateByPrimaryKey(TbPlussPhoneValidateCode record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussPlatformDataMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussPlatformDataMapper.java new file mode 100644 index 0000000..4f3fd96 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussPlatformDataMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussPlatformData; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussPlatformDataMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussPlatformData record); + + int insertSelective(TbPlussPlatformData record); + + TbPlussPlatformData selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussPlatformData record); + + int updateByPrimaryKey(TbPlussPlatformData record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussPostageConfigMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussPostageConfigMapper.java new file mode 100644 index 0000000..5d5bd7b --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussPostageConfigMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussPostageConfig; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussPostageConfigMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussPostageConfig record); + + int insertSelective(TbPlussPostageConfig record); + + TbPlussPostageConfig selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussPostageConfig record); + + int updateByPrimaryKey(TbPlussPostageConfig record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussProvinceMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussProvinceMapper.java new file mode 100644 index 0000000..6a09bb0 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussProvinceMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussProvince; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussProvinceMapper { + int deleteByPrimaryKey(Integer fProvinceNo); + + int insert(TbPlussProvince record); + + int insertSelective(TbPlussProvince record); + + TbPlussProvince selectByPrimaryKey(Integer fProvinceNo); + + int updateByPrimaryKeySelective(TbPlussProvince record); + + int updateByPrimaryKey(TbPlussProvince record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussPushAllMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussPushAllMapper.java new file mode 100644 index 0000000..ef8b414 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussPushAllMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussPushAll; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussPushAllMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussPushAll record); + + int insertSelective(TbPlussPushAll record); + + TbPlussPushAll selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussPushAll record); + + int updateByPrimaryKey(TbPlussPushAll record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussQrCodeMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussQrCodeMapper.java new file mode 100644 index 0000000..58b4b21 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussQrCodeMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussQrCode; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussQrCodeMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussQrCode record); + + int insertSelective(TbPlussQrCode record); + + TbPlussQrCode selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussQrCode record); + + int updateByPrimaryKey(TbPlussQrCode record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussQuestionsAnswersMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussQuestionsAnswersMapper.java new file mode 100644 index 0000000..932c9a3 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussQuestionsAnswersMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussQuestionsAnswers; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussQuestionsAnswersMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussQuestionsAnswers record); + + int insertSelective(TbPlussQuestionsAnswers record); + + TbPlussQuestionsAnswers selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussQuestionsAnswers record); + + int updateByPrimaryKey(TbPlussQuestionsAnswers record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussQueueDataMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussQueueDataMapper.java new file mode 100644 index 0000000..5c20409 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussQueueDataMapper.java @@ -0,0 +1,16 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussQueueData; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussQueueDataMapper { + int deleteByPrimaryKey(String id); + + int insert(TbPlussQueueData record); + + int insertSelective(TbPlussQueueData record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRealFansMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRealFansMapper.java new file mode 100644 index 0000000..fc2d51c --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRealFansMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussRealFans; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussRealFansMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussRealFans record); + + int insertSelective(TbPlussRealFans record); + + TbPlussRealFans selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussRealFans record); + + int updateByPrimaryKey(TbPlussRealFans record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRegionCodeLsMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRegionCodeLsMapper.java new file mode 100644 index 0000000..65b400e --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRegionCodeLsMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussRegionCodeLs; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussRegionCodeLsMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussRegionCodeLs record); + + int insertSelective(TbPlussRegionCodeLs record); + + TbPlussRegionCodeLs selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussRegionCodeLs record); + + int updateByPrimaryKey(TbPlussRegionCodeLs record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRegionCodeRyxMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRegionCodeRyxMapper.java new file mode 100644 index 0000000..385f8b1 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRegionCodeRyxMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussRegionCodeRyx; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussRegionCodeRyxMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussRegionCodeRyx record); + + int insertSelective(TbPlussRegionCodeRyx record); + + TbPlussRegionCodeRyx selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussRegionCodeRyx record); + + int updateByPrimaryKey(TbPlussRegionCodeRyx record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRegionCodeSxfMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRegionCodeSxfMapper.java new file mode 100644 index 0000000..e3e38fb --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRegionCodeSxfMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussRegionCodeSxf; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussRegionCodeSxfMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussRegionCodeSxf record); + + int insertSelective(TbPlussRegionCodeSxf record); + + TbPlussRegionCodeSxf selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussRegionCodeSxf record); + + int updateByPrimaryKey(TbPlussRegionCodeSxf record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRegionCodeYsMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRegionCodeYsMapper.java new file mode 100644 index 0000000..b15aeb1 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRegionCodeYsMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussRegionCodeYs; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussRegionCodeYsMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussRegionCodeYs record); + + int insertSelective(TbPlussRegionCodeYs record); + + TbPlussRegionCodeYs selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussRegionCodeYs record); + + int updateByPrimaryKey(TbPlussRegionCodeYs record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRegionLklMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRegionLklMapper.java new file mode 100644 index 0000000..5d5ac0c --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRegionLklMapper.java @@ -0,0 +1,14 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussRegionLkl; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussRegionLklMapper { + int insert(TbPlussRegionLkl record); + + int insertSelective(TbPlussRegionLkl record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRegionReflectMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRegionReflectMapper.java new file mode 100644 index 0000000..6993aec --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRegionReflectMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussRegionReflect; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussRegionReflectMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussRegionReflect record); + + int insertSelective(TbPlussRegionReflect record); + + TbPlussRegionReflect selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussRegionReflect record); + + int updateByPrimaryKey(TbPlussRegionReflect record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussReqRecordsMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussReqRecordsMapper.java new file mode 100644 index 0000000..3c0372b --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussReqRecordsMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussReqRecords; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussReqRecordsMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussReqRecords record); + + int insertSelective(TbPlussReqRecords record); + + TbPlussReqRecords selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussReqRecords record); + + int updateByPrimaryKey(TbPlussReqRecords record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRewardConfigMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRewardConfigMapper.java new file mode 100644 index 0000000..14117a6 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRewardConfigMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussRewardConfig; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussRewardConfigMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussRewardConfig record); + + int insertSelective(TbPlussRewardConfig record); + + TbPlussRewardConfig selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussRewardConfig record); + + int updateByPrimaryKey(TbPlussRewardConfig record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRiskBlacklistMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRiskBlacklistMapper.java new file mode 100644 index 0000000..18bc61a --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRiskBlacklistMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussRiskBlacklist; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussRiskBlacklistMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussRiskBlacklist record); + + int insertSelective(TbPlussRiskBlacklist record); + + TbPlussRiskBlacklist selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussRiskBlacklist record); + + int updateByPrimaryKey(TbPlussRiskBlacklist record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRoleInfoMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRoleInfoMapper.java new file mode 100644 index 0000000..16f437d --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRoleInfoMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussRoleInfo; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussRoleInfoMapper { + int deleteByPrimaryKey(Long id); + + int insert(TbPlussRoleInfo record); + + int insertSelective(TbPlussRoleInfo record); + + TbPlussRoleInfo selectByPrimaryKey(Long id); + + int updateByPrimaryKeySelective(TbPlussRoleInfo record); + + int updateByPrimaryKey(TbPlussRoleInfo record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRoleMenuInfoCopy1Mapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRoleMenuInfoCopy1Mapper.java new file mode 100644 index 0000000..5ecc2ce --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRoleMenuInfoCopy1Mapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussRoleMenuInfoCopy1; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussRoleMenuInfoCopy1Mapper { + int deleteByPrimaryKey(Long id); + + int insert(TbPlussRoleMenuInfoCopy1 record); + + int insertSelective(TbPlussRoleMenuInfoCopy1 record); + + TbPlussRoleMenuInfoCopy1 selectByPrimaryKey(Long id); + + int updateByPrimaryKeySelective(TbPlussRoleMenuInfoCopy1 record); + + int updateByPrimaryKey(TbPlussRoleMenuInfoCopy1 record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRoleMenuInfoMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRoleMenuInfoMapper.java new file mode 100644 index 0000000..f181015 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRoleMenuInfoMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussRoleMenuInfo; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussRoleMenuInfoMapper { + int deleteByPrimaryKey(Long id); + + int insert(TbPlussRoleMenuInfo record); + + int insertSelective(TbPlussRoleMenuInfo record); + + TbPlussRoleMenuInfo selectByPrimaryKey(Long id); + + int updateByPrimaryKeySelective(TbPlussRoleMenuInfo record); + + int updateByPrimaryKey(TbPlussRoleMenuInfo record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRoleUserInfoMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRoleUserInfoMapper.java new file mode 100644 index 0000000..520c9be --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussRoleUserInfoMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussRoleUserInfo; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussRoleUserInfoMapper { + int deleteByPrimaryKey(Long id); + + int insert(TbPlussRoleUserInfo record); + + int insertSelective(TbPlussRoleUserInfo record); + + TbPlussRoleUserInfo selectByPrimaryKey(Long id); + + int updateByPrimaryKeySelective(TbPlussRoleUserInfo record); + + int updateByPrimaryKey(TbPlussRoleUserInfo record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussStaffPermissionMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussStaffPermissionMapper.java new file mode 100644 index 0000000..00f7116 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussStaffPermissionMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussStaffPermission; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussStaffPermissionMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussStaffPermission record); + + int insertSelective(TbPlussStaffPermission record); + + TbPlussStaffPermission selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussStaffPermission record); + + int updateByPrimaryKey(TbPlussStaffPermission record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussSubMercCodeYsMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussSubMercCodeYsMapper.java new file mode 100644 index 0000000..94d241f --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussSubMercCodeYsMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussSubMercCodeYs; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussSubMercCodeYsMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussSubMercCodeYs record); + + int insertSelective(TbPlussSubMercCodeYs record); + + TbPlussSubMercCodeYs selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussSubMercCodeYs record); + + int updateByPrimaryKey(TbPlussSubMercCodeYs record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussSubMerchantApplyOrderMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussSubMerchantApplyOrderMapper.java new file mode 100644 index 0000000..fb69a82 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussSubMerchantApplyOrderMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussSubMerchantApplyOrder; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussSubMerchantApplyOrderMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussSubMerchantApplyOrder record); + + int insertSelective(TbPlussSubMerchantApplyOrder record); + + TbPlussSubMerchantApplyOrder selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussSubMerchantApplyOrder record); + + int updateByPrimaryKey(TbPlussSubMerchantApplyOrder record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussSubMerchantMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussSubMerchantMapper.java new file mode 100644 index 0000000..fee2b28 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussSubMerchantMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussSubMerchant; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussSubMerchantMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussSubMerchant record); + + int insertSelective(TbPlussSubMerchant record); + + TbPlussSubMerchant selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussSubMerchant record); + + int updateByPrimaryKey(TbPlussSubMerchant record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussSuggestMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussSuggestMapper.java new file mode 100644 index 0000000..afde6c8 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussSuggestMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussSuggest; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussSuggestMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussSuggest record); + + int insertSelective(TbPlussSuggest record); + + TbPlussSuggest selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussSuggest record); + + int updateByPrimaryKey(TbPlussSuggest record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussSxfMccInfoMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussSxfMccInfoMapper.java new file mode 100644 index 0000000..19e4a49 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussSxfMccInfoMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussSxfMccInfo; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussSxfMccInfoMapper { + int deleteByPrimaryKey(Integer fId); + + int insert(TbPlussSxfMccInfo record); + + int insertSelective(TbPlussSxfMccInfo record); + + TbPlussSxfMccInfo selectByPrimaryKey(Integer fId); + + int updateByPrimaryKeySelective(TbPlussSxfMccInfo record); + + int updateByPrimaryKey(TbPlussSxfMccInfo record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussSysSqlMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussSysSqlMapper.java new file mode 100644 index 0000000..e79c793 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussSysSqlMapper.java @@ -0,0 +1,24 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussSysSql; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussSysSqlMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussSysSql record); + + int insertSelective(TbPlussSysSql record); + + TbPlussSysSql selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussSysSql record); + + int updateByPrimaryKeyWithBLOBs(TbPlussSysSql record); + + int updateByPrimaryKey(TbPlussSysSql record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussSystemInfoMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussSystemInfoMapper.java new file mode 100644 index 0000000..63be838 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussSystemInfoMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussSystemInfo; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussSystemInfoMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussSystemInfo record); + + int insertSelective(TbPlussSystemInfo record); + + TbPlussSystemInfo selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussSystemInfo record); + + int updateByPrimaryKey(TbPlussSystemInfo record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussSystemconfigMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussSystemconfigMapper.java new file mode 100644 index 0000000..bb0f410 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussSystemconfigMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussSystemconfig; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussSystemconfigMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussSystemconfig record); + + int insertSelective(TbPlussSystemconfig record); + + TbPlussSystemconfig selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussSystemconfig record); + + int updateByPrimaryKey(TbPlussSystemconfig record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussTaskSortMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussTaskSortMapper.java new file mode 100644 index 0000000..a08ecda --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussTaskSortMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussTaskSort; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussTaskSortMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussTaskSort record); + + int insertSelective(TbPlussTaskSort record); + + TbPlussTaskSort selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussTaskSort record); + + int updateByPrimaryKey(TbPlussTaskSort record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUnknownExceptionMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUnknownExceptionMapper.java new file mode 100644 index 0000000..94b24e5 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUnknownExceptionMapper.java @@ -0,0 +1,25 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussUnknownException; +import com.chaozhanggui.dao.system.entity.TbPlussUnknownExceptionWithBLOBs; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussUnknownExceptionMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussUnknownExceptionWithBLOBs record); + + int insertSelective(TbPlussUnknownExceptionWithBLOBs record); + + TbPlussUnknownExceptionWithBLOBs selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussUnknownExceptionWithBLOBs record); + + int updateByPrimaryKeyWithBLOBs(TbPlussUnknownExceptionWithBLOBs record); + + int updateByPrimaryKey(TbPlussUnknownException record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserAddressMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserAddressMapper.java new file mode 100644 index 0000000..d5e11d9 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserAddressMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussUserAddress; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussUserAddressMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussUserAddress record); + + int insertSelective(TbPlussUserAddress record); + + TbPlussUserAddress selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussUserAddress record); + + int updateByPrimaryKey(TbPlussUserAddress record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserAppMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserAppMapper.java new file mode 100644 index 0000000..c8cb0d8 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserAppMapper.java @@ -0,0 +1,30 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussUserApp; + +import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Param; +import org.springframework.stereotype.Component; + +import java.util.List; +import java.util.Map; + +@Component +@Mapper +public interface TbPlussUserAppMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussUserApp record); + + int insertSelective(TbPlussUserApp record); + + TbPlussUserApp selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussUserApp record); + + int updateByPrimaryKey(TbPlussUserApp record); + + int countByInviteNum(String inviteNum); + + List> selectProfit(@Param("userId") String userId,@Param("orderNumber") String orderNumber,@Param("merchantCode") String merchantCode); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserAreaRewardFlowMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserAreaRewardFlowMapper.java new file mode 100644 index 0000000..e865a45 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserAreaRewardFlowMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussUserAreaRewardFlow; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussUserAreaRewardFlowMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussUserAreaRewardFlow record); + + int insertSelective(TbPlussUserAreaRewardFlow record); + + TbPlussUserAreaRewardFlow selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussUserAreaRewardFlow record); + + int updateByPrimaryKey(TbPlussUserAreaRewardFlow record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserAssessMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserAssessMapper.java new file mode 100644 index 0000000..b80619c --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserAssessMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussUserAssess; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussUserAssessMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussUserAssess record); + + int insertSelective(TbPlussUserAssess record); + + TbPlussUserAssess selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussUserAssess record); + + int updateByPrimaryKey(TbPlussUserAssess record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserDeviceCashMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserDeviceCashMapper.java new file mode 100644 index 0000000..8d11c76 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserDeviceCashMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussUserDeviceCash; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussUserDeviceCashMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussUserDeviceCash record); + + int insertSelective(TbPlussUserDeviceCash record); + + TbPlussUserDeviceCash selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussUserDeviceCash record); + + int updateByPrimaryKey(TbPlussUserDeviceCash record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserExtraMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserExtraMapper.java new file mode 100644 index 0000000..3bacece --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserExtraMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussUserExtra; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussUserExtraMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussUserExtra record); + + int insertSelective(TbPlussUserExtra record); + + TbPlussUserExtra selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussUserExtra record); + + int updateByPrimaryKey(TbPlussUserExtra record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserInfoMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserInfoMapper.java new file mode 100644 index 0000000..82c99d5 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserInfoMapper.java @@ -0,0 +1,32 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussUserInfo; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +import java.util.List; +import java.util.Map; + +@Component +@Mapper +public interface TbPlussUserInfoMapper { + int deleteByPrimaryKey(Long id); + + int insert(TbPlussUserInfo record); + + int insertSelective(TbPlussUserInfo record); + + TbPlussUserInfo selectByPrimaryKey(Long id); + + int updateByPrimaryKeySelective(TbPlussUserInfo record); + + int updateByPrimaryKey(TbPlussUserInfo record); + + TbPlussUserInfo selectByLoginName(String loginName); + + Map selectIndexData(Integer userId); + + List> selectOutFlow(String userId,String userName,String merchantCode,String status); + +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserIntegralMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserIntegralMapper.java new file mode 100644 index 0000000..21b2b08 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserIntegralMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussUserIntegral; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussUserIntegralMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussUserIntegral record); + + int insertSelective(TbPlussUserIntegral record); + + TbPlussUserIntegral selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussUserIntegral record); + + int updateByPrimaryKey(TbPlussUserIntegral record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserIntegralUseMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserIntegralUseMapper.java new file mode 100644 index 0000000..670d291 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserIntegralUseMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussUserIntegralUse; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussUserIntegralUseMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussUserIntegralUse record); + + int insertSelective(TbPlussUserIntegralUse record); + + TbPlussUserIntegralUse selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussUserIntegralUse record); + + int updateByPrimaryKey(TbPlussUserIntegralUse record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserIpRecordMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserIpRecordMapper.java new file mode 100644 index 0000000..8cfc695 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserIpRecordMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussUserIpRecord; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussUserIpRecordMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussUserIpRecord record); + + int insertSelective(TbPlussUserIpRecord record); + + TbPlussUserIpRecord selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussUserIpRecord record); + + int updateByPrimaryKey(TbPlussUserIpRecord record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserLevelMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserLevelMapper.java new file mode 100644 index 0000000..382562c --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserLevelMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussUserLevel; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussUserLevelMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussUserLevel record); + + int insertSelective(TbPlussUserLevel record); + + TbPlussUserLevel selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussUserLevel record); + + int updateByPrimaryKey(TbPlussUserLevel record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserManageProfitMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserManageProfitMapper.java new file mode 100644 index 0000000..8703568 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserManageProfitMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussUserManageProfit; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussUserManageProfitMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussUserManageProfit record); + + int insertSelective(TbPlussUserManageProfit record); + + TbPlussUserManageProfit selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussUserManageProfit record); + + int updateByPrimaryKey(TbPlussUserManageProfit record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserMultipleRemarkMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserMultipleRemarkMapper.java new file mode 100644 index 0000000..4c2de43 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserMultipleRemarkMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussUserMultipleRemark; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussUserMultipleRemarkMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussUserMultipleRemark record); + + int insertSelective(TbPlussUserMultipleRemark record); + + TbPlussUserMultipleRemark selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussUserMultipleRemark record); + + int updateByPrimaryKey(TbPlussUserMultipleRemark record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserOrganMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserOrganMapper.java new file mode 100644 index 0000000..ce36b1a --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserOrganMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussUserOrgan; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussUserOrganMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussUserOrgan record); + + int insertSelective(TbPlussUserOrgan record); + + TbPlussUserOrgan selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussUserOrgan record); + + int updateByPrimaryKey(TbPlussUserOrgan record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserProfitMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserProfitMapper.java new file mode 100644 index 0000000..6e2ddec --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserProfitMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussUserProfit; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussUserProfitMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussUserProfit record); + + int insertSelective(TbPlussUserProfit record); + + TbPlussUserProfit selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussUserProfit record); + + int updateByPrimaryKey(TbPlussUserProfit record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserPromotionMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserPromotionMapper.java new file mode 100644 index 0000000..1814763 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserPromotionMapper.java @@ -0,0 +1,48 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussUserPromotion; + +import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Param; +import org.springframework.stereotype.Component; + +import java.math.BigDecimal; +import java.util.List; +import java.util.Map; + +@Component +@Mapper +public interface TbPlussUserPromotionMapper { + int deleteByPrimaryKey(Integer userId); + + int insert(TbPlussUserPromotion record); + + int insertSelective(TbPlussUserPromotion record); + + TbPlussUserPromotion selectByPrimaryKey(Integer userId); + + int updateByPrimaryKeySelective(TbPlussUserPromotion record); + + int updateByPrimaryKey(TbPlussUserPromotion record); + + List> selectByUserIdOrAgecyCode(@Param("userId") String userId,@Param("userType") String userType,@Param("agencyCode") String agencyCode,@Param("isExtend") String isExtend); + + + + List> selectOrderByUserIdOrAgecyCode(@Param("userId") String userId,@Param("userType") String userType,@Param("agencyCode") String agencyCode,@Param("isExtend") String isExtend); + + Map selectByUserId(String userId); + + Integer selectCountByUserId(String userId); + + + BigDecimal selectMaxFeeByUserId(String userId); + + TbPlussUserPromotion selectByParentUserId(String userId); + + TbPlussUserPromotion selectUserProByUserId(String userId); + + Map selectCount(String userId); + + List> selectMarkByUserId(@Param("userId") String userId,@Param("phone") String phone,@Param("name") String name); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserPushIdMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserPushIdMapper.java new file mode 100644 index 0000000..608d781 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserPushIdMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussUserPushId; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussUserPushIdMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussUserPushId record); + + int insertSelective(TbPlussUserPushId record); + + TbPlussUserPushId selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussUserPushId record); + + int updateByPrimaryKey(TbPlussUserPushId record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserRewardFlowMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserRewardFlowMapper.java new file mode 100644 index 0000000..3c81e1d --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserRewardFlowMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussUserRewardFlow; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussUserRewardFlowMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussUserRewardFlow record); + + int insertSelective(TbPlussUserRewardFlow record); + + TbPlussUserRewardFlow selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussUserRewardFlow record); + + int updateByPrimaryKey(TbPlussUserRewardFlow record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserRewardInfoMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserRewardInfoMapper.java new file mode 100644 index 0000000..4588a83 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserRewardInfoMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussUserRewardInfo; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussUserRewardInfoMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussUserRewardInfo record); + + int insertSelective(TbPlussUserRewardInfo record); + + TbPlussUserRewardInfo selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussUserRewardInfo record); + + int updateByPrimaryKey(TbPlussUserRewardInfo record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserRoleMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserRoleMapper.java new file mode 100644 index 0000000..230f90b --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserRoleMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussUserRole; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussUserRoleMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussUserRole record); + + int insertSelective(TbPlussUserRole record); + + TbPlussUserRole selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussUserRole record); + + int updateByPrimaryKey(TbPlussUserRole record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserTaskMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserTaskMapper.java new file mode 100644 index 0000000..0377a68 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserTaskMapper.java @@ -0,0 +1,24 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussUserTask; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussUserTaskMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussUserTask record); + + int insertSelective(TbPlussUserTask record); + + TbPlussUserTask selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussUserTask record); + + int updateByPrimaryKeyWithBLOBs(TbPlussUserTask record); + + int updateByPrimaryKey(TbPlussUserTask record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserTypeMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserTypeMapper.java new file mode 100644 index 0000000..d92b8be --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserTypeMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussUserType; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussUserTypeMapper { + int deleteByPrimaryKey(String typeCode); + + int insert(TbPlussUserType record); + + int insertSelective(TbPlussUserType record); + + TbPlussUserType selectByPrimaryKey(String typeCode); + + int updateByPrimaryKeySelective(TbPlussUserType record); + + int updateByPrimaryKey(TbPlussUserType record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserVoiceMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserVoiceMapper.java new file mode 100644 index 0000000..a262ffc --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussUserVoiceMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussUserVoice; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussUserVoiceMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussUserVoice record); + + int insertSelective(TbPlussUserVoice record); + + TbPlussUserVoice selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussUserVoice record); + + int updateByPrimaryKey(TbPlussUserVoice record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussWxBankCodeMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussWxBankCodeMapper.java new file mode 100644 index 0000000..214674c --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussWxBankCodeMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussWxBankCode; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussWxBankCodeMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussWxBankCode record); + + int insertSelective(TbPlussWxBankCode record); + + TbPlussWxBankCode selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussWxBankCode record); + + int updateByPrimaryKey(TbPlussWxBankCode record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussWxCityInfoMapper.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussWxCityInfoMapper.java new file mode 100644 index 0000000..7e3d2d6 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/dao/TbPlussWxCityInfoMapper.java @@ -0,0 +1,22 @@ +package com.chaozhanggui.dao.system.dao; + +import com.chaozhanggui.dao.system.entity.TbPlussWxCityInfo; + +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +@Component +@Mapper +public interface TbPlussWxCityInfoMapper { + int deleteByPrimaryKey(Integer id); + + int insert(TbPlussWxCityInfo record); + + int insertSelective(TbPlussWxCityInfo record); + + TbPlussWxCityInfo selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(TbPlussWxCityInfo record); + + int updateByPrimaryKey(TbPlussWxCityInfo record); +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbLklRegionBankInfo.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbLklRegionBankInfo.java new file mode 100644 index 0000000..f9d6092 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbLklRegionBankInfo.java @@ -0,0 +1,107 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbLklRegionBankInfo implements Serializable { + private Integer id; + + private String sCode; + + private String sName; + + private String rCode; + + private String rName; + + private String clearNo; + + private String areaCode; + + private String branchBankNo; + + private String branchBankName; + + private String bankNo; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getsCode() { + return sCode; + } + + public void setsCode(String sCode) { + this.sCode = sCode == null ? null : sCode.trim(); + } + + public String getsName() { + return sName; + } + + public void setsName(String sName) { + this.sName = sName == null ? null : sName.trim(); + } + + public String getrCode() { + return rCode; + } + + public void setrCode(String rCode) { + this.rCode = rCode == null ? null : rCode.trim(); + } + + public String getrName() { + return rName; + } + + public void setrName(String rName) { + this.rName = rName == null ? null : rName.trim(); + } + + public String getClearNo() { + return clearNo; + } + + public void setClearNo(String clearNo) { + this.clearNo = clearNo == null ? null : clearNo.trim(); + } + + public String getAreaCode() { + return areaCode; + } + + public void setAreaCode(String areaCode) { + this.areaCode = areaCode == null ? null : areaCode.trim(); + } + + public String getBranchBankNo() { + return branchBankNo; + } + + public void setBranchBankNo(String branchBankNo) { + this.branchBankNo = branchBankNo == null ? null : branchBankNo.trim(); + } + + public String getBranchBankName() { + return branchBankName; + } + + public void setBranchBankName(String branchBankName) { + this.branchBankName = branchBankName == null ? null : branchBankName.trim(); + } + + public String getBankNo() { + return bankNo; + } + + public void setBankNo(String bankNo) { + this.bankNo = bankNo == null ? null : bankNo.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAccessChannel.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAccessChannel.java new file mode 100644 index 0000000..ba0bebc --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAccessChannel.java @@ -0,0 +1,89 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussAccessChannel implements Serializable { + private Integer id; + + private String name; + + private String code; + + private String orgid; + + private BigDecimal minrate; + + private String maxrate; + + private Date createtime; + + private String remark; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public String getOrgid() { + return orgid; + } + + public void setOrgid(String orgid) { + this.orgid = orgid == null ? null : orgid.trim(); + } + + public BigDecimal getMinrate() { + return minrate; + } + + public void setMinrate(BigDecimal minrate) { + this.minrate = minrate; + } + + public String getMaxrate() { + return maxrate; + } + + public void setMaxrate(String maxrate) { + this.maxrate = maxrate == null ? null : maxrate.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAccessChannelCipherCode.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAccessChannelCipherCode.java new file mode 100644 index 0000000..f9f59b6 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAccessChannelCipherCode.java @@ -0,0 +1,38 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussAccessChannelCipherCode implements Serializable { + private Integer id; + + private String orgid; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getOrgid() { + return orgid; + } + + public void setOrgid(String orgid) { + this.orgid = orgid == null ? null : orgid.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAccessChannelCipherCodeWithBLOBs.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAccessChannelCipherCodeWithBLOBs.java new file mode 100644 index 0000000..b1908ec --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAccessChannelCipherCodeWithBLOBs.java @@ -0,0 +1,27 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussAccessChannelCipherCodeWithBLOBs extends TbPlussAccessChannelCipherCode implements Serializable { + private String prikey; + + private String pubkey; + + private static final long serialVersionUID = 1L; + + public String getPrikey() { + return prikey; + } + + public void setPrikey(String prikey) { + this.prikey = prikey == null ? null : prikey.trim(); + } + + public String getPubkey() { + return pubkey; + } + + public void setPubkey(String pubkey) { + this.pubkey = pubkey == null ? null : pubkey.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAccessChannelWxConf.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAccessChannelWxConf.java new file mode 100644 index 0000000..e4287a6 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAccessChannelWxConf.java @@ -0,0 +1,98 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussAccessChannelWxConf implements Serializable { + private Integer id; + + private String orgid; + + private String type; + + private String subappid; + + private String accounttype; + + private String jsapipath; + + private String uniflag; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getOrgid() { + return orgid; + } + + public void setOrgid(String orgid) { + this.orgid = orgid == null ? null : orgid.trim(); + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public String getSubappid() { + return subappid; + } + + public void setSubappid(String subappid) { + this.subappid = subappid == null ? null : subappid.trim(); + } + + public String getAccounttype() { + return accounttype; + } + + public void setAccounttype(String accounttype) { + this.accounttype = accounttype == null ? null : accounttype.trim(); + } + + public String getJsapipath() { + return jsapipath; + } + + public void setJsapipath(String jsapipath) { + this.jsapipath = jsapipath == null ? null : jsapipath.trim(); + } + + public String getUniflag() { + return uniflag; + } + + public void setUniflag(String uniflag) { + this.uniflag = uniflag == null ? null : uniflag.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAccount.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAccount.java new file mode 100644 index 0000000..f558e3b --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAccount.java @@ -0,0 +1,118 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussAccount implements Serializable { + private Integer id; + + private String userid; + + private String idcardid; + + private String bankcardid; + + private String certificateurl; + + private String settletype; + + private Date createtime; + + private Date updatetime; + + private String channeltype; + + private Integer valid; + + private String bak; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getUserid() { + return userid; + } + + public void setUserid(String userid) { + this.userid = userid == null ? null : userid.trim(); + } + + public String getIdcardid() { + return idcardid; + } + + public void setIdcardid(String idcardid) { + this.idcardid = idcardid == null ? null : idcardid.trim(); + } + + public String getBankcardid() { + return bankcardid; + } + + public void setBankcardid(String bankcardid) { + this.bankcardid = bankcardid == null ? null : bankcardid.trim(); + } + + public String getCertificateurl() { + return certificateurl; + } + + public void setCertificateurl(String certificateurl) { + this.certificateurl = certificateurl == null ? null : certificateurl.trim(); + } + + public String getSettletype() { + return settletype; + } + + public void setSettletype(String settletype) { + this.settletype = settletype == null ? null : settletype.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getChanneltype() { + return channeltype; + } + + public void setChanneltype(String channeltype) { + this.channeltype = channeltype == null ? null : channeltype.trim(); + } + + public Integer getValid() { + return valid; + } + + public void setValid(Integer valid) { + this.valid = valid; + } + + public String getBak() { + return bak; + } + + public void setBak(String bak) { + this.bak = bak == null ? null : bak.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAccountOld.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAccountOld.java new file mode 100644 index 0000000..6ea51b2 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAccountOld.java @@ -0,0 +1,88 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussAccountOld implements Serializable { + private Integer id; + + private String userid; + + private String idcardid; + + private String bankcardid; + + private String settletype; + + private Date createtime; + + private Date updatetime; + + private String bak; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getUserid() { + return userid; + } + + public void setUserid(String userid) { + this.userid = userid == null ? null : userid.trim(); + } + + public String getIdcardid() { + return idcardid; + } + + public void setIdcardid(String idcardid) { + this.idcardid = idcardid == null ? null : idcardid.trim(); + } + + public String getBankcardid() { + return bankcardid; + } + + public void setBankcardid(String bankcardid) { + this.bankcardid = bankcardid == null ? null : bankcardid.trim(); + } + + public String getSettletype() { + return settletype; + } + + public void setSettletype(String settletype) { + this.settletype = settletype == null ? null : settletype.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getBak() { + return bak; + } + + public void setBak(String bak) { + this.bak = bak == null ? null : bak.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAccountV2.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAccountV2.java new file mode 100644 index 0000000..746b11d --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAccountV2.java @@ -0,0 +1,108 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussAccountV2 implements Serializable { + private Integer id; + + private String userid; + + private String idcardid; + + private String bankcardid; + + private String certificateurl; + + private String settletype; + + private Date createtime; + + private Date updatetime; + + private String channeltype; + + private String bak; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getUserid() { + return userid; + } + + public void setUserid(String userid) { + this.userid = userid == null ? null : userid.trim(); + } + + public String getIdcardid() { + return idcardid; + } + + public void setIdcardid(String idcardid) { + this.idcardid = idcardid == null ? null : idcardid.trim(); + } + + public String getBankcardid() { + return bankcardid; + } + + public void setBankcardid(String bankcardid) { + this.bankcardid = bankcardid == null ? null : bankcardid.trim(); + } + + public String getCertificateurl() { + return certificateurl; + } + + public void setCertificateurl(String certificateurl) { + this.certificateurl = certificateurl == null ? null : certificateurl.trim(); + } + + public String getSettletype() { + return settletype; + } + + public void setSettletype(String settletype) { + this.settletype = settletype == null ? null : settletype.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getChanneltype() { + return channeltype; + } + + public void setChanneltype(String channeltype) { + this.channeltype = channeltype == null ? null : channeltype.trim(); + } + + public String getBak() { + return bak; + } + + public void setBak(String bak) { + this.bak = bak == null ? null : bak.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussActivityActivate.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussActivityActivate.java new file mode 100644 index 0000000..17b7af1 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussActivityActivate.java @@ -0,0 +1,108 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussActivityActivate implements Serializable { + private Integer id; + + private Integer userid; + + private String merchantcode; + + private String merchantname; + + private Double givemoney; + + private String storeid; + + private String storename; + + private String name; + + private Date createdt; + + private String posterurl; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public Double getGivemoney() { + return givemoney; + } + + public void setGivemoney(Double givemoney) { + this.givemoney = givemoney; + } + + public String getStoreid() { + return storeid; + } + + public void setStoreid(String storeid) { + this.storeid = storeid == null ? null : storeid.trim(); + } + + public String getStorename() { + return storename; + } + + public void setStorename(String storename) { + this.storename = storename == null ? null : storename.trim(); + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public String getPosterurl() { + return posterurl; + } + + public void setPosterurl(String posterurl) { + this.posterurl = posterurl == null ? null : posterurl.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussActivityConsumReturn.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussActivityConsumReturn.java new file mode 100644 index 0000000..c1645a8 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussActivityConsumReturn.java @@ -0,0 +1,168 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussActivityConsumReturn implements Serializable { + private Integer id; + + private Integer userid; + + private String merchantcode; + + private String merchantname; + + private String storeid; + + private String storename; + + private String name; + + private Date createdt; + + private Integer type; + + private Double comsumemoney; + + private Double returnmoney; + + private Double percent; + + private Date startdt; + + private Date enddt; + + private Integer timetype; + + private String posterurl; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public String getStoreid() { + return storeid; + } + + public void setStoreid(String storeid) { + this.storeid = storeid == null ? null : storeid.trim(); + } + + public String getStorename() { + return storename; + } + + public void setStorename(String storename) { + this.storename = storename == null ? null : storename.trim(); + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public Integer getType() { + return type; + } + + public void setType(Integer type) { + this.type = type; + } + + public Double getComsumemoney() { + return comsumemoney; + } + + public void setComsumemoney(Double comsumemoney) { + this.comsumemoney = comsumemoney; + } + + public Double getReturnmoney() { + return returnmoney; + } + + public void setReturnmoney(Double returnmoney) { + this.returnmoney = returnmoney; + } + + public Double getPercent() { + return percent; + } + + public void setPercent(Double percent) { + this.percent = percent; + } + + public Date getStartdt() { + return startdt; + } + + public void setStartdt(Date startdt) { + this.startdt = startdt; + } + + public Date getEnddt() { + return enddt; + } + + public void setEnddt(Date enddt) { + this.enddt = enddt; + } + + public Integer getTimetype() { + return timetype; + } + + public void setTimetype(Integer timetype) { + this.timetype = timetype; + } + + public String getPosterurl() { + return posterurl; + } + + public void setPosterurl(String posterurl) { + this.posterurl = posterurl == null ? null : posterurl.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussActivityEnroll.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussActivityEnroll.java new file mode 100644 index 0000000..f7adb58 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussActivityEnroll.java @@ -0,0 +1,128 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussActivityEnroll implements Serializable { + private Integer id; + + private String merchantcode; + + private String merchantname; + + private String actname; + + private Integer actid; + + private String status; + + private String remark; + + private Date createtime; + + private Date updatetime; + + private Date audittime; + + private String acttype; + + private String deviceno; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public String getActname() { + return actname; + } + + public void setActname(String actname) { + this.actname = actname == null ? null : actname.trim(); + } + + public Integer getActid() { + return actid; + } + + public void setActid(Integer actid) { + this.actid = actid; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public Date getAudittime() { + return audittime; + } + + public void setAudittime(Date audittime) { + this.audittime = audittime; + } + + public String getActtype() { + return acttype; + } + + public void setActtype(String acttype) { + this.acttype = acttype == null ? null : acttype.trim(); + } + + public String getDeviceno() { + return deviceno; + } + + public void setDeviceno(String deviceno) { + this.deviceno = deviceno == null ? null : deviceno.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussActivityRecharge.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussActivityRecharge.java new file mode 100644 index 0000000..d6f74a3 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussActivityRecharge.java @@ -0,0 +1,148 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussActivityRecharge implements Serializable { + private Integer id; + + private Integer userid; + + private String merchantcode; + + private String merchantname; + + private Double rechargemoney; + + private Double givemoney; + + private Date startdt; + + private Date enddt; + + private String name; + + private Date createdt; + + private Integer timetype; + + private String storeid; + + private String storename; + + private String posterurl; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public Double getRechargemoney() { + return rechargemoney; + } + + public void setRechargemoney(Double rechargemoney) { + this.rechargemoney = rechargemoney; + } + + public Double getGivemoney() { + return givemoney; + } + + public void setGivemoney(Double givemoney) { + this.givemoney = givemoney; + } + + public Date getStartdt() { + return startdt; + } + + public void setStartdt(Date startdt) { + this.startdt = startdt; + } + + public Date getEnddt() { + return enddt; + } + + public void setEnddt(Date enddt) { + this.enddt = enddt; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public Integer getTimetype() { + return timetype; + } + + public void setTimetype(Integer timetype) { + this.timetype = timetype; + } + + public String getStoreid() { + return storeid; + } + + public void setStoreid(String storeid) { + this.storeid = storeid == null ? null : storeid.trim(); + } + + public String getStorename() { + return storename; + } + + public void setStorename(String storename) { + this.storename = storename == null ? null : storename.trim(); + } + + public String getPosterurl() { + return posterurl; + } + + public void setPosterurl(String posterurl) { + this.posterurl = posterurl == null ? null : posterurl.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussActivityRecommend.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussActivityRecommend.java new file mode 100644 index 0000000..084f39a --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussActivityRecommend.java @@ -0,0 +1,118 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussActivityRecommend implements Serializable { + private Integer id; + + private Integer userid; + + private String name; + + private Double firstmixrechargemoney; + + private Double recommendmoney; + + private String merchantcode; + + private String merchantname; + + private String storeid; + + private String storename; + + private Date createdt; + + private String posterurl; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public Double getFirstmixrechargemoney() { + return firstmixrechargemoney; + } + + public void setFirstmixrechargemoney(Double firstmixrechargemoney) { + this.firstmixrechargemoney = firstmixrechargemoney; + } + + public Double getRecommendmoney() { + return recommendmoney; + } + + public void setRecommendmoney(Double recommendmoney) { + this.recommendmoney = recommendmoney; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public String getStoreid() { + return storeid; + } + + public void setStoreid(String storeid) { + this.storeid = storeid == null ? null : storeid.trim(); + } + + public String getStorename() { + return storename; + } + + public void setStorename(String storename) { + this.storename = storename == null ? null : storename.trim(); + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public String getPosterurl() { + return posterurl; + } + + public void setPosterurl(String posterurl) { + this.posterurl = posterurl == null ? null : posterurl.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAgreement.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAgreement.java new file mode 100644 index 0000000..d275d1a --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAgreement.java @@ -0,0 +1,68 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussAgreement implements Serializable { + private Integer id; + + private String discern; + + private String name; + + private Date createdt; + + private String createor; + + private String content; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getDiscern() { + return discern; + } + + public void setDiscern(String discern) { + this.discern = discern == null ? null : discern.trim(); + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public String getCreateor() { + return createor; + } + + public void setCreateor(String createor) { + this.createor = createor == null ? null : createor.trim(); + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content == null ? null : content.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAliMcc.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAliMcc.java new file mode 100644 index 0000000..86c90d5 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAliMcc.java @@ -0,0 +1,27 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussAliMcc implements Serializable { + private Integer id; + + private String mcccode; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMcccode() { + return mcccode; + } + + public void setMcccode(String mcccode) { + this.mcccode = mcccode == null ? null : mcccode.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAppGuide.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAppGuide.java new file mode 100644 index 0000000..09d2588 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAppGuide.java @@ -0,0 +1,78 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussAppGuide implements Serializable { + private Integer id; + + private String code; + + private String name; + + private Date createtime; + + private Date updatetime; + + private String type; + + private String content; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content == null ? null : content.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAppMenu.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAppMenu.java new file mode 100644 index 0000000..18da0b8 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAppMenu.java @@ -0,0 +1,208 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussAppMenu implements Serializable { + private Integer id; + + private String name; + + private String code; + + private String icon; + + private String menuGroup; + + private String navCode; + + private String navName; + + private String url; + + private Byte sort; + + private String visible; + + private Date createTime; + + private Date updateTime; + + private String isapplets; + + private String username; + + private String path; + + private String isuniapp; + + private String isandroidenabled; + + private String isiphoneenabled; + + private String androidminversionname; + + private String iosminversionname; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public String getIcon() { + return icon; + } + + public void setIcon(String icon) { + this.icon = icon == null ? null : icon.trim(); + } + + public String getMenuGroup() { + return menuGroup; + } + + public void setMenuGroup(String menuGroup) { + this.menuGroup = menuGroup == null ? null : menuGroup.trim(); + } + + public String getNavCode() { + return navCode; + } + + public void setNavCode(String navCode) { + this.navCode = navCode == null ? null : navCode.trim(); + } + + public String getNavName() { + return navName; + } + + public void setNavName(String navName) { + this.navName = navName == null ? null : navName.trim(); + } + + public String getUrl() { + return url; + } + + public void setUrl(String url) { + this.url = url == null ? null : url.trim(); + } + + public Byte getSort() { + return sort; + } + + public void setSort(Byte sort) { + this.sort = sort; + } + + public String getVisible() { + return visible; + } + + public void setVisible(String visible) { + this.visible = visible == null ? null : visible.trim(); + } + + public Date getCreateTime() { + return createTime; + } + + public void setCreateTime(Date createTime) { + this.createTime = createTime; + } + + public Date getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(Date updateTime) { + this.updateTime = updateTime; + } + + public String getIsapplets() { + return isapplets; + } + + public void setIsapplets(String isapplets) { + this.isapplets = isapplets == null ? null : isapplets.trim(); + } + + public String getUsername() { + return username; + } + + public void setUsername(String username) { + this.username = username == null ? null : username.trim(); + } + + public String getPath() { + return path; + } + + public void setPath(String path) { + this.path = path == null ? null : path.trim(); + } + + public String getIsuniapp() { + return isuniapp; + } + + public void setIsuniapp(String isuniapp) { + this.isuniapp = isuniapp == null ? null : isuniapp.trim(); + } + + public String getIsandroidenabled() { + return isandroidenabled; + } + + public void setIsandroidenabled(String isandroidenabled) { + this.isandroidenabled = isandroidenabled == null ? null : isandroidenabled.trim(); + } + + public String getIsiphoneenabled() { + return isiphoneenabled; + } + + public void setIsiphoneenabled(String isiphoneenabled) { + this.isiphoneenabled = isiphoneenabled == null ? null : isiphoneenabled.trim(); + } + + public String getAndroidminversionname() { + return androidminversionname; + } + + public void setAndroidminversionname(String androidminversionname) { + this.androidminversionname = androidminversionname == null ? null : androidminversionname.trim(); + } + + public String getIosminversionname() { + return iosminversionname; + } + + public void setIosminversionname(String iosminversionname) { + this.iosminversionname = iosminversionname == null ? null : iosminversionname.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAppMenuUserType.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAppMenuUserType.java new file mode 100644 index 0000000..bc07863 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAppMenuUserType.java @@ -0,0 +1,68 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussAppMenuUserType implements Serializable { + private Integer id; + + private String dictvalue; + + private String name; + + private Date createtime; + + private Date updatetime; + + private String navCode; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getDictvalue() { + return dictvalue; + } + + public void setDictvalue(String dictvalue) { + this.dictvalue = dictvalue == null ? null : dictvalue.trim(); + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getNavCode() { + return navCode; + } + + public void setNavCode(String navCode) { + this.navCode = navCode == null ? null : navCode.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAppVersionInfo.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAppVersionInfo.java new file mode 100644 index 0000000..07f284d --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAppVersionInfo.java @@ -0,0 +1,108 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussAppVersionInfo implements Serializable { + private Integer id; + + private Integer platformcode; + + private String platformname; + + private Integer versioncode; + + private String versionname; + + private String url; + + private String updateinfo; + + private Byte forceupdate; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getPlatformcode() { + return platformcode; + } + + public void setPlatformcode(Integer platformcode) { + this.platformcode = platformcode; + } + + public String getPlatformname() { + return platformname; + } + + public void setPlatformname(String platformname) { + this.platformname = platformname == null ? null : platformname.trim(); + } + + public Integer getVersioncode() { + return versioncode; + } + + public void setVersioncode(Integer versioncode) { + this.versioncode = versioncode; + } + + public String getVersionname() { + return versionname; + } + + public void setVersionname(String versionname) { + this.versionname = versionname == null ? null : versionname.trim(); + } + + public String getUrl() { + return url; + } + + public void setUrl(String url) { + this.url = url == null ? null : url.trim(); + } + + public String getUpdateinfo() { + return updateinfo; + } + + public void setUpdateinfo(String updateinfo) { + this.updateinfo = updateinfo == null ? null : updateinfo.trim(); + } + + public Byte getForceupdate() { + return forceupdate; + } + + public void setForceupdate(Byte forceupdate) { + this.forceupdate = forceupdate; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAppletInfo.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAppletInfo.java new file mode 100644 index 0000000..3824cbc --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAppletInfo.java @@ -0,0 +1,68 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussAppletInfo implements Serializable { + private Integer id; + + private String appid; + + private String ghid; + + private String secret; + + private String remark; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getAppid() { + return appid; + } + + public void setAppid(String appid) { + this.appid = appid == null ? null : appid.trim(); + } + + public String getGhid() { + return ghid; + } + + public void setGhid(String ghid) { + this.ghid = ghid == null ? null : ghid.trim(); + } + + public String getSecret() { + return secret; + } + + public void setSecret(String secret) { + this.secret = secret == null ? null : secret.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAppletStore.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAppletStore.java new file mode 100644 index 0000000..02bb281 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAppletStore.java @@ -0,0 +1,88 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussAppletStore implements Serializable { + private Integer id; + + private String storename; + + private String icon; + + private Integer sort; + + private Integer type; + + private String url; + + private Date createtime; + + private String appid; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getStorename() { + return storename; + } + + public void setStorename(String storename) { + this.storename = storename == null ? null : storename.trim(); + } + + public String getIcon() { + return icon; + } + + public void setIcon(String icon) { + this.icon = icon == null ? null : icon.trim(); + } + + public Integer getSort() { + return sort; + } + + public void setSort(Integer sort) { + this.sort = sort; + } + + public Integer getType() { + return type; + } + + public void setType(Integer type) { + this.type = type; + } + + public String getUrl() { + return url; + } + + public void setUrl(String url) { + this.url = url == null ? null : url.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public String getAppid() { + return appid; + } + + public void setAppid(String appid) { + this.appid = appid == null ? null : appid.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAppletStoreUser.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAppletStoreUser.java new file mode 100644 index 0000000..f9da7e1 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAppletStoreUser.java @@ -0,0 +1,48 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussAppletStoreUser implements Serializable { + private Integer id; + + private Integer applestoreid; + + private Integer userid; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getApplestoreid() { + return applestoreid; + } + + public void setApplestoreid(Integer applestoreid) { + this.applestoreid = applestoreid; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussArea.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussArea.java new file mode 100644 index 0000000..d5e244c --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussArea.java @@ -0,0 +1,77 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussArea implements Serializable { + private Integer fAreaNo; + + private String fAreaName; + + private String fAliasa; + + private Integer fAreaCupsNo; + + private Integer fCityNo; + + private String fX; + + private String fY; + + private static final long serialVersionUID = 1L; + + public Integer getfAreaNo() { + return fAreaNo; + } + + public void setfAreaNo(Integer fAreaNo) { + this.fAreaNo = fAreaNo; + } + + public String getfAreaName() { + return fAreaName; + } + + public void setfAreaName(String fAreaName) { + this.fAreaName = fAreaName == null ? null : fAreaName.trim(); + } + + public String getfAliasa() { + return fAliasa; + } + + public void setfAliasa(String fAliasa) { + this.fAliasa = fAliasa == null ? null : fAliasa.trim(); + } + + public Integer getfAreaCupsNo() { + return fAreaCupsNo; + } + + public void setfAreaCupsNo(Integer fAreaCupsNo) { + this.fAreaCupsNo = fAreaCupsNo; + } + + public Integer getfCityNo() { + return fCityNo; + } + + public void setfCityNo(Integer fCityNo) { + this.fCityNo = fCityNo; + } + + public String getfX() { + return fX; + } + + public void setfX(String fX) { + this.fX = fX == null ? null : fX.trim(); + } + + public String getfY() { + return fY; + } + + public void setfY(String fY) { + this.fY = fY == null ? null : fY.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAreaCity.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAreaCity.java new file mode 100644 index 0000000..b7cb116 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussAreaCity.java @@ -0,0 +1,57 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussAreaCity implements Serializable { + private Integer id; + + private String type; + + private String areaname; + + private String parentareacode; + + private String areacode; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public String getAreaname() { + return areaname; + } + + public void setAreaname(String areaname) { + this.areaname = areaname == null ? null : areaname.trim(); + } + + public String getParentareacode() { + return parentareacode; + } + + public void setParentareacode(String parentareacode) { + this.parentareacode = parentareacode == null ? null : parentareacode.trim(); + } + + public String getAreacode() { + return areacode; + } + + public void setAreacode(String areacode) { + this.areacode = areacode == null ? null : areacode.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBank4Cache.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBank4Cache.java new file mode 100644 index 0000000..d52597f --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBank4Cache.java @@ -0,0 +1,98 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussBank4Cache implements Serializable { + private Integer id; + + private String name; + + private String phone; + + private String idcardno; + + private String bankcardno; + + private String status; + + private String remark; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getPhone() { + return phone; + } + + public void setPhone(String phone) { + this.phone = phone == null ? null : phone.trim(); + } + + public String getIdcardno() { + return idcardno; + } + + public void setIdcardno(String idcardno) { + this.idcardno = idcardno == null ? null : idcardno.trim(); + } + + public String getBankcardno() { + return bankcardno; + } + + public void setBankcardno(String bankcardno) { + this.bankcardno = bankcardno == null ? null : bankcardno.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBankBranchLkl.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBankBranchLkl.java new file mode 100644 index 0000000..4879747 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBankBranchLkl.java @@ -0,0 +1,97 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussBankBranchLkl implements Serializable { + private String id; + + private String createTime; + + private String optimistic; + + private String updateTime; + + private String areaCode; + + private String bankNo; + + private String branchBankName; + + private String branchBankNo; + + private String clearNo; + + private static final long serialVersionUID = 1L; + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id == null ? null : id.trim(); + } + + public String getCreateTime() { + return createTime; + } + + public void setCreateTime(String createTime) { + this.createTime = createTime == null ? null : createTime.trim(); + } + + public String getOptimistic() { + return optimistic; + } + + public void setOptimistic(String optimistic) { + this.optimistic = optimistic == null ? null : optimistic.trim(); + } + + public String getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(String updateTime) { + this.updateTime = updateTime == null ? null : updateTime.trim(); + } + + public String getAreaCode() { + return areaCode; + } + + public void setAreaCode(String areaCode) { + this.areaCode = areaCode == null ? null : areaCode.trim(); + } + + public String getBankNo() { + return bankNo; + } + + public void setBankNo(String bankNo) { + this.bankNo = bankNo == null ? null : bankNo.trim(); + } + + public String getBranchBankName() { + return branchBankName; + } + + public void setBranchBankName(String branchBankName) { + this.branchBankName = branchBankName == null ? null : branchBankName.trim(); + } + + public String getBranchBankNo() { + return branchBankNo; + } + + public void setBranchBankNo(String branchBankNo) { + this.branchBankNo = branchBankNo == null ? null : branchBankNo.trim(); + } + + public String getClearNo() { + return clearNo; + } + + public void setClearNo(String clearNo) { + this.clearNo = clearNo == null ? null : clearNo.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBankCard.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBankCard.java new file mode 100644 index 0000000..8803e43 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBankCard.java @@ -0,0 +1,178 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussBankCard implements Serializable { + private Integer id; + + private String userid; + + private String bankholder; + + private String bankcardno; + + private String bankname; + + private String branchname; + + private String accounttype; + + private String contactline; + + private String branchprovince; + + private String branchcity; + + private String brancharea; + + private String bankaddressno; + + private String phone; + + private String imgurl; + + private String licenseurl; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getUserid() { + return userid; + } + + public void setUserid(String userid) { + this.userid = userid == null ? null : userid.trim(); + } + + public String getBankholder() { + return bankholder; + } + + public void setBankholder(String bankholder) { + this.bankholder = bankholder == null ? null : bankholder.trim(); + } + + public String getBankcardno() { + return bankcardno; + } + + public void setBankcardno(String bankcardno) { + this.bankcardno = bankcardno == null ? null : bankcardno.trim(); + } + + public String getBankname() { + return bankname; + } + + public void setBankname(String bankname) { + this.bankname = bankname == null ? null : bankname.trim(); + } + + public String getBranchname() { + return branchname; + } + + public void setBranchname(String branchname) { + this.branchname = branchname == null ? null : branchname.trim(); + } + + public String getAccounttype() { + return accounttype; + } + + public void setAccounttype(String accounttype) { + this.accounttype = accounttype == null ? null : accounttype.trim(); + } + + public String getContactline() { + return contactline; + } + + public void setContactline(String contactline) { + this.contactline = contactline == null ? null : contactline.trim(); + } + + public String getBranchprovince() { + return branchprovince; + } + + public void setBranchprovince(String branchprovince) { + this.branchprovince = branchprovince == null ? null : branchprovince.trim(); + } + + public String getBranchcity() { + return branchcity; + } + + public void setBranchcity(String branchcity) { + this.branchcity = branchcity == null ? null : branchcity.trim(); + } + + public String getBrancharea() { + return brancharea; + } + + public void setBrancharea(String brancharea) { + this.brancharea = brancharea == null ? null : brancharea.trim(); + } + + public String getBankaddressno() { + return bankaddressno; + } + + public void setBankaddressno(String bankaddressno) { + this.bankaddressno = bankaddressno == null ? null : bankaddressno.trim(); + } + + public String getPhone() { + return phone; + } + + public void setPhone(String phone) { + this.phone = phone == null ? null : phone.trim(); + } + + public String getImgurl() { + return imgurl; + } + + public void setImgurl(String imgurl) { + this.imgurl = imgurl == null ? null : imgurl.trim(); + } + + public String getLicenseurl() { + return licenseurl; + } + + public void setLicenseurl(String licenseurl) { + this.licenseurl = licenseurl == null ? null : licenseurl.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBankCodeSxf.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBankCodeSxf.java new file mode 100644 index 0000000..7b4df3a --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBankCodeSxf.java @@ -0,0 +1,107 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussBankCodeSxf implements Serializable { + private Integer id; + + private String bankCode; + + private String cnapsCode; + + private String cnapsName; + + private String bankName; + + private String orgCode; + + private String provinceCode; + + private String provinceName; + + private String cityCode; + + private String cityName; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getBankCode() { + return bankCode; + } + + public void setBankCode(String bankCode) { + this.bankCode = bankCode == null ? null : bankCode.trim(); + } + + public String getCnapsCode() { + return cnapsCode; + } + + public void setCnapsCode(String cnapsCode) { + this.cnapsCode = cnapsCode == null ? null : cnapsCode.trim(); + } + + public String getCnapsName() { + return cnapsName; + } + + public void setCnapsName(String cnapsName) { + this.cnapsName = cnapsName == null ? null : cnapsName.trim(); + } + + public String getBankName() { + return bankName; + } + + public void setBankName(String bankName) { + this.bankName = bankName == null ? null : bankName.trim(); + } + + public String getOrgCode() { + return orgCode; + } + + public void setOrgCode(String orgCode) { + this.orgCode = orgCode == null ? null : orgCode.trim(); + } + + public String getProvinceCode() { + return provinceCode; + } + + public void setProvinceCode(String provinceCode) { + this.provinceCode = provinceCode == null ? null : provinceCode.trim(); + } + + public String getProvinceName() { + return provinceName; + } + + public void setProvinceName(String provinceName) { + this.provinceName = provinceName == null ? null : provinceName.trim(); + } + + public String getCityCode() { + return cityCode; + } + + public void setCityCode(String cityCode) { + this.cityCode = cityCode == null ? null : cityCode.trim(); + } + + public String getCityName() { + return cityName; + } + + public void setCityName(String cityName) { + this.cityName = cityName == null ? null : cityName.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBankCodeYs.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBankCodeYs.java new file mode 100644 index 0000000..6575a93 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBankCodeYs.java @@ -0,0 +1,57 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussBankCodeYs implements Serializable { + private String contactline; + + private String branchname; + + private String banktype; + + private String bankname; + + private String citycode; + + private static final long serialVersionUID = 1L; + + public String getContactline() { + return contactline; + } + + public void setContactline(String contactline) { + this.contactline = contactline == null ? null : contactline.trim(); + } + + public String getBranchname() { + return branchname; + } + + public void setBranchname(String branchname) { + this.branchname = branchname == null ? null : branchname.trim(); + } + + public String getBanktype() { + return banktype; + } + + public void setBanktype(String banktype) { + this.banktype = banktype == null ? null : banktype.trim(); + } + + public String getBankname() { + return bankname; + } + + public void setBankname(String bankname) { + this.bankname = bankname == null ? null : bankname.trim(); + } + + public String getCitycode() { + return citycode; + } + + public void setCitycode(String citycode) { + this.citycode = citycode == null ? null : citycode.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBankRegionLkl.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBankRegionLkl.java new file mode 100644 index 0000000..db584af --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBankRegionLkl.java @@ -0,0 +1,77 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussBankRegionLkl implements Serializable { + private String id; + + private String createTime; + + private String optimistic; + + private String updateTime; + + private String code; + + private String name; + + private String parentCode; + + private static final long serialVersionUID = 1L; + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id == null ? null : id.trim(); + } + + public String getCreateTime() { + return createTime; + } + + public void setCreateTime(String createTime) { + this.createTime = createTime == null ? null : createTime.trim(); + } + + public String getOptimistic() { + return optimistic; + } + + public void setOptimistic(String optimistic) { + this.optimistic = optimistic == null ? null : optimistic.trim(); + } + + public String getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(String updateTime) { + this.updateTime = updateTime == null ? null : updateTime.trim(); + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getParentCode() { + return parentCode; + } + + public void setParentCode(String parentCode) { + this.parentCode = parentCode == null ? null : parentCode.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBankUnionpayCode.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBankUnionpayCode.java new file mode 100644 index 0000000..bbce7b2 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBankUnionpayCode.java @@ -0,0 +1,97 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussBankUnionpayCode implements Serializable { + private String fUnionpayCode; + + private String fBankArea; + + private String fBankCity; + + private String fCftAreaCode; + + private String fCftCityCode; + + private String fBranchName; + + private String fBankName; + + private String fX; + + private String fY; + + private static final long serialVersionUID = 1L; + + public String getfUnionpayCode() { + return fUnionpayCode; + } + + public void setfUnionpayCode(String fUnionpayCode) { + this.fUnionpayCode = fUnionpayCode == null ? null : fUnionpayCode.trim(); + } + + public String getfBankArea() { + return fBankArea; + } + + public void setfBankArea(String fBankArea) { + this.fBankArea = fBankArea == null ? null : fBankArea.trim(); + } + + public String getfBankCity() { + return fBankCity; + } + + public void setfBankCity(String fBankCity) { + this.fBankCity = fBankCity == null ? null : fBankCity.trim(); + } + + public String getfCftAreaCode() { + return fCftAreaCode; + } + + public void setfCftAreaCode(String fCftAreaCode) { + this.fCftAreaCode = fCftAreaCode == null ? null : fCftAreaCode.trim(); + } + + public String getfCftCityCode() { + return fCftCityCode; + } + + public void setfCftCityCode(String fCftCityCode) { + this.fCftCityCode = fCftCityCode == null ? null : fCftCityCode.trim(); + } + + public String getfBranchName() { + return fBranchName; + } + + public void setfBranchName(String fBranchName) { + this.fBranchName = fBranchName == null ? null : fBranchName.trim(); + } + + public String getfBankName() { + return fBankName; + } + + public void setfBankName(String fBankName) { + this.fBankName = fBankName == null ? null : fBankName.trim(); + } + + public String getfX() { + return fX; + } + + public void setfX(String fX) { + this.fX = fX == null ? null : fX.trim(); + } + + public String getfY() { + return fY; + } + + public void setfY(String fY) { + this.fY = fY == null ? null : fY.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBanner.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBanner.java new file mode 100644 index 0000000..cc0d2a7 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBanner.java @@ -0,0 +1,67 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussBanner implements Serializable { + private Integer id; + + private String picurl; + + private Integer seq; + + private String jumpurl; + + private String type; + + private Integer status; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getPicurl() { + return picurl; + } + + public void setPicurl(String picurl) { + this.picurl = picurl == null ? null : picurl.trim(); + } + + public Integer getSeq() { + return seq; + } + + public void setSeq(Integer seq) { + this.seq = seq; + } + + public String getJumpurl() { + return jumpurl; + } + + public void setJumpurl(String jumpurl) { + this.jumpurl = jumpurl == null ? null : jumpurl.trim(); + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBestNewActivity.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBestNewActivity.java new file mode 100644 index 0000000..68a08b9 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBestNewActivity.java @@ -0,0 +1,88 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussBestNewActivity implements Serializable { + private Integer id; + + private String title; + + private String desc; + + private String status; + + private String type; + + private Date updatetime; + + private String updateor; + + private Integer seq; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title == null ? null : title.trim(); + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc == null ? null : desc.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getUpdateor() { + return updateor; + } + + public void setUpdateor(String updateor) { + this.updateor = updateor == null ? null : updateor.trim(); + } + + public Integer getSeq() { + return seq; + } + + public void setSeq(Integer seq) { + this.seq = seq; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBestNewActivityWithBLOBs.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBestNewActivityWithBLOBs.java new file mode 100644 index 0000000..5d891ac --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBestNewActivityWithBLOBs.java @@ -0,0 +1,37 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussBestNewActivityWithBLOBs extends TbPlussBestNewActivity implements Serializable { + private String content; + + private String imgs; + + private String url; + + private static final long serialVersionUID = 1L; + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content == null ? null : content.trim(); + } + + public String getImgs() { + return imgs; + } + + public void setImgs(String imgs) { + this.imgs = imgs == null ? null : imgs.trim(); + } + + public String getUrl() { + return url; + } + + public void setUrl(String url) { + this.url = url == null ? null : url.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBillSendRecord.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBillSendRecord.java new file mode 100644 index 0000000..8f04c77 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBillSendRecord.java @@ -0,0 +1,88 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussBillSendRecord implements Serializable { + private Integer id; + + private Integer userid; + + private Date starttime; + + private Date endtime; + + private String email; + + private String status; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public Date getStarttime() { + return starttime; + } + + public void setStarttime(Date starttime) { + this.starttime = starttime; + } + + public Date getEndtime() { + return endtime; + } + + public void setEndtime(Date endtime) { + this.endtime = endtime; + } + + public String getEmail() { + return email; + } + + public void setEmail(String email) { + this.email = email == null ? null : email.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBusinessSceneLkl.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBusinessSceneLkl.java new file mode 100644 index 0000000..4a1f0b3 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBusinessSceneLkl.java @@ -0,0 +1,77 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussBusinessSceneLkl implements Serializable { + private String id; + + private String createTime; + + private String optimistic; + + private String updateTime; + + private String code; + + private String name; + + private String businessScene; + + private static final long serialVersionUID = 1L; + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id == null ? null : id.trim(); + } + + public String getCreateTime() { + return createTime; + } + + public void setCreateTime(String createTime) { + this.createTime = createTime == null ? null : createTime.trim(); + } + + public String getOptimistic() { + return optimistic; + } + + public void setOptimistic(String optimistic) { + this.optimistic = optimistic == null ? null : optimistic.trim(); + } + + public String getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(String updateTime) { + this.updateTime = updateTime == null ? null : updateTime.trim(); + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getBusinessScene() { + return businessScene; + } + + public void setBusinessScene(String businessScene) { + this.businessScene = businessScene == null ? null : businessScene.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBusinessSmallLkl.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBusinessSmallLkl.java new file mode 100644 index 0000000..ebd6c64 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussBusinessSmallLkl.java @@ -0,0 +1,77 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussBusinessSmallLkl implements Serializable { + private String id; + + private String createTime; + + private String optimistic; + + private String updateTime; + + private String code; + + private String name; + + private String parentCode; + + private static final long serialVersionUID = 1L; + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id == null ? null : id.trim(); + } + + public String getCreateTime() { + return createTime; + } + + public void setCreateTime(String createTime) { + this.createTime = createTime == null ? null : createTime.trim(); + } + + public String getOptimistic() { + return optimistic; + } + + public void setOptimistic(String optimistic) { + this.optimistic = optimistic == null ? null : optimistic.trim(); + } + + public String getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(String updateTime) { + this.updateTime = updateTime == null ? null : updateTime.trim(); + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getParentCode() { + return parentCode; + } + + public void setParentCode(String parentCode) { + this.parentCode = parentCode == null ? null : parentCode.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussCacheInfo.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussCacheInfo.java new file mode 100644 index 0000000..b13e9f4 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussCacheInfo.java @@ -0,0 +1,88 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussCacheInfo implements Serializable { + private Integer id; + + private String keycode; + + private String appid; + + private String appsercet; + + private String accesstoken; + + private String refreshtoken; + + private Long expiresIn; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getKeycode() { + return keycode; + } + + public void setKeycode(String keycode) { + this.keycode = keycode == null ? null : keycode.trim(); + } + + public String getAppid() { + return appid; + } + + public void setAppid(String appid) { + this.appid = appid == null ? null : appid.trim(); + } + + public String getAppsercet() { + return appsercet; + } + + public void setAppsercet(String appsercet) { + this.appsercet = appsercet == null ? null : appsercet.trim(); + } + + public String getAccesstoken() { + return accesstoken; + } + + public void setAccesstoken(String accesstoken) { + this.accesstoken = accesstoken == null ? null : accesstoken.trim(); + } + + public String getRefreshtoken() { + return refreshtoken; + } + + public void setRefreshtoken(String refreshtoken) { + this.refreshtoken = refreshtoken == null ? null : refreshtoken.trim(); + } + + public Long getExpiresIn() { + return expiresIn; + } + + public void setExpiresIn(Long expiresIn) { + this.expiresIn = expiresIn; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussCallbackData.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussCallbackData.java new file mode 100644 index 0000000..fd65753 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussCallbackData.java @@ -0,0 +1,37 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussCallbackData implements Serializable { + private Integer id; + + private String table; + + private String origin; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getTable() { + return table; + } + + public void setTable(String table) { + this.table = table == null ? null : table.trim(); + } + + public String getOrigin() { + return origin; + } + + public void setOrigin(String origin) { + this.origin = origin == null ? null : origin.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussCash.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussCash.java new file mode 100644 index 0000000..5de4e54 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussCash.java @@ -0,0 +1,249 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussCash implements Serializable { + private Integer id; + + private Integer userid; + + private String username; + + private String merchantcode; + + private String merchantname; + + private String accountno; + + private String accountname; + + private BigDecimal cashamt; + + private Integer status; + + private String reason; + + private Date createdt; + + private Date updatedt; + + private String logo; + + private String cashnumber; + + private String backno; + + private Date backdt; + + private String updator; + + private Integer type; + + private BigDecimal baseservicecharge; + + private BigDecimal ratiocharge; + + private BigDecimal virrealcashamt; + + private BigDecimal virtotalcharge; + + private String cashstatus; + + private String cashstatusnow; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getUsername() { + return username; + } + + public void setUsername(String username) { + this.username = username == null ? null : username.trim(); + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public String getAccountno() { + return accountno; + } + + public void setAccountno(String accountno) { + this.accountno = accountno == null ? null : accountno.trim(); + } + + public String getAccountname() { + return accountname; + } + + public void setAccountname(String accountname) { + this.accountname = accountname == null ? null : accountname.trim(); + } + + public BigDecimal getCashamt() { + return cashamt; + } + + public void setCashamt(BigDecimal cashamt) { + this.cashamt = cashamt; + } + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public String getReason() { + return reason; + } + + public void setReason(String reason) { + this.reason = reason == null ? null : reason.trim(); + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public Date getUpdatedt() { + return updatedt; + } + + public void setUpdatedt(Date updatedt) { + this.updatedt = updatedt; + } + + public String getLogo() { + return logo; + } + + public void setLogo(String logo) { + this.logo = logo == null ? null : logo.trim(); + } + + public String getCashnumber() { + return cashnumber; + } + + public void setCashnumber(String cashnumber) { + this.cashnumber = cashnumber == null ? null : cashnumber.trim(); + } + + public String getBackno() { + return backno; + } + + public void setBackno(String backno) { + this.backno = backno == null ? null : backno.trim(); + } + + public Date getBackdt() { + return backdt; + } + + public void setBackdt(Date backdt) { + this.backdt = backdt; + } + + public String getUpdator() { + return updator; + } + + public void setUpdator(String updator) { + this.updator = updator == null ? null : updator.trim(); + } + + public Integer getType() { + return type; + } + + public void setType(Integer type) { + this.type = type; + } + + public BigDecimal getBaseservicecharge() { + return baseservicecharge; + } + + public void setBaseservicecharge(BigDecimal baseservicecharge) { + this.baseservicecharge = baseservicecharge; + } + + public BigDecimal getRatiocharge() { + return ratiocharge; + } + + public void setRatiocharge(BigDecimal ratiocharge) { + this.ratiocharge = ratiocharge; + } + + public BigDecimal getVirrealcashamt() { + return virrealcashamt; + } + + public void setVirrealcashamt(BigDecimal virrealcashamt) { + this.virrealcashamt = virrealcashamt; + } + + public BigDecimal getVirtotalcharge() { + return virtotalcharge; + } + + public void setVirtotalcharge(BigDecimal virtotalcharge) { + this.virtotalcharge = virtotalcharge; + } + + public String getCashstatus() { + return cashstatus; + } + + public void setCashstatus(String cashstatus) { + this.cashstatus = cashstatus == null ? null : cashstatus.trim(); + } + + public String getCashstatusnow() { + return cashstatusnow; + } + + public void setCashstatusnow(String cashstatusnow) { + this.cashstatusnow = cashstatusnow == null ? null : cashstatusnow.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussCashAccount.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussCashAccount.java new file mode 100644 index 0000000..5ee31ba --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussCashAccount.java @@ -0,0 +1,68 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussCashAccount implements Serializable { + private Integer id; + + private Integer userid; + + private String accountno; + + private String accountname; + + private Integer status; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getAccountno() { + return accountno; + } + + public void setAccountno(String accountno) { + this.accountno = accountno == null ? null : accountno.trim(); + } + + public String getAccountname() { + return accountname; + } + + public void setAccountname(String accountname) { + this.accountname = accountname == null ? null : accountname.trim(); + } + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussCity.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussCity.java new file mode 100644 index 0000000..17c1ff0 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussCity.java @@ -0,0 +1,77 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussCity implements Serializable { + private Integer fCityNo; + + private String fCityName; + + private String fAliasc; + + private Integer fCityCupsNo; + + private Integer fProvinceNo; + + private String fX; + + private String fY; + + private static final long serialVersionUID = 1L; + + public Integer getfCityNo() { + return fCityNo; + } + + public void setfCityNo(Integer fCityNo) { + this.fCityNo = fCityNo; + } + + public String getfCityName() { + return fCityName; + } + + public void setfCityName(String fCityName) { + this.fCityName = fCityName == null ? null : fCityName.trim(); + } + + public String getfAliasc() { + return fAliasc; + } + + public void setfAliasc(String fAliasc) { + this.fAliasc = fAliasc == null ? null : fAliasc.trim(); + } + + public Integer getfCityCupsNo() { + return fCityCupsNo; + } + + public void setfCityCupsNo(Integer fCityCupsNo) { + this.fCityCupsNo = fCityCupsNo; + } + + public Integer getfProvinceNo() { + return fProvinceNo; + } + + public void setfProvinceNo(Integer fProvinceNo) { + this.fProvinceNo = fProvinceNo; + } + + public String getfX() { + return fX; + } + + public void setfX(String fX) { + this.fX = fX == null ? null : fX.trim(); + } + + public String getfY() { + return fY; + } + + public void setfY(String fY) { + this.fY = fY == null ? null : fY.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussCommonRemark.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussCommonRemark.java new file mode 100644 index 0000000..4995325 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussCommonRemark.java @@ -0,0 +1,78 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussCommonRemark implements Serializable { + private Integer id; + + private Integer userid; + + private String remark; + + private Integer dataid; + + private String code; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public Integer getDataid() { + return dataid; + } + + public void setDataid(Integer dataid) { + this.dataid = dataid; + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussCommonSwitch.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussCommonSwitch.java new file mode 100644 index 0000000..33a3111 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussCommonSwitch.java @@ -0,0 +1,78 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussCommonSwitch implements Serializable { + private Integer id; + + private String code; + + private String name; + + private String value; + + private Integer sort; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getValue() { + return value; + } + + public void setValue(String value) { + this.value = value == null ? null : value.trim(); + } + + public Integer getSort() { + return sort; + } + + public void setSort(Integer sort) { + this.sort = sort; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDayStatistics.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDayStatistics.java new file mode 100644 index 0000000..40899c7 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDayStatistics.java @@ -0,0 +1,249 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussDayStatistics implements Serializable { + private Integer id; + + private BigDecimal consumefee; + + private BigDecimal consumefeezfb; + + private BigDecimal consumefeewx; + + private BigDecimal consumefeeyl; + + private Integer count; + + private Integer countzfb; + + private Integer countwx; + + private Integer countyl; + + private BigDecimal refundfee; + + private BigDecimal refundfeezfb; + + private BigDecimal refundfeewx; + + private BigDecimal refundfeeyl; + + private Integer newcount; + + private Integer newcountstore; + + private Integer newcountmember; + + private Integer newcountreg; + + private BigDecimal profitsum; + + private BigDecimal profitspread; + + private BigDecimal profitfans; + + private BigDecimal profitcompany; + + private Date date; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public BigDecimal getConsumefee() { + return consumefee; + } + + public void setConsumefee(BigDecimal consumefee) { + this.consumefee = consumefee; + } + + public BigDecimal getConsumefeezfb() { + return consumefeezfb; + } + + public void setConsumefeezfb(BigDecimal consumefeezfb) { + this.consumefeezfb = consumefeezfb; + } + + public BigDecimal getConsumefeewx() { + return consumefeewx; + } + + public void setConsumefeewx(BigDecimal consumefeewx) { + this.consumefeewx = consumefeewx; + } + + public BigDecimal getConsumefeeyl() { + return consumefeeyl; + } + + public void setConsumefeeyl(BigDecimal consumefeeyl) { + this.consumefeeyl = consumefeeyl; + } + + public Integer getCount() { + return count; + } + + public void setCount(Integer count) { + this.count = count; + } + + public Integer getCountzfb() { + return countzfb; + } + + public void setCountzfb(Integer countzfb) { + this.countzfb = countzfb; + } + + public Integer getCountwx() { + return countwx; + } + + public void setCountwx(Integer countwx) { + this.countwx = countwx; + } + + public Integer getCountyl() { + return countyl; + } + + public void setCountyl(Integer countyl) { + this.countyl = countyl; + } + + public BigDecimal getRefundfee() { + return refundfee; + } + + public void setRefundfee(BigDecimal refundfee) { + this.refundfee = refundfee; + } + + public BigDecimal getRefundfeezfb() { + return refundfeezfb; + } + + public void setRefundfeezfb(BigDecimal refundfeezfb) { + this.refundfeezfb = refundfeezfb; + } + + public BigDecimal getRefundfeewx() { + return refundfeewx; + } + + public void setRefundfeewx(BigDecimal refundfeewx) { + this.refundfeewx = refundfeewx; + } + + public BigDecimal getRefundfeeyl() { + return refundfeeyl; + } + + public void setRefundfeeyl(BigDecimal refundfeeyl) { + this.refundfeeyl = refundfeeyl; + } + + public Integer getNewcount() { + return newcount; + } + + public void setNewcount(Integer newcount) { + this.newcount = newcount; + } + + public Integer getNewcountstore() { + return newcountstore; + } + + public void setNewcountstore(Integer newcountstore) { + this.newcountstore = newcountstore; + } + + public Integer getNewcountmember() { + return newcountmember; + } + + public void setNewcountmember(Integer newcountmember) { + this.newcountmember = newcountmember; + } + + public Integer getNewcountreg() { + return newcountreg; + } + + public void setNewcountreg(Integer newcountreg) { + this.newcountreg = newcountreg; + } + + public BigDecimal getProfitsum() { + return profitsum; + } + + public void setProfitsum(BigDecimal profitsum) { + this.profitsum = profitsum; + } + + public BigDecimal getProfitspread() { + return profitspread; + } + + public void setProfitspread(BigDecimal profitspread) { + this.profitspread = profitspread; + } + + public BigDecimal getProfitfans() { + return profitfans; + } + + public void setProfitfans(BigDecimal profitfans) { + this.profitfans = profitfans; + } + + public BigDecimal getProfitcompany() { + return profitcompany; + } + + public void setProfitcompany(BigDecimal profitcompany) { + this.profitcompany = profitcompany; + } + + public Date getDate() { + return date; + } + + public void setDate(Date date) { + this.date = date; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDevice.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDevice.java new file mode 100644 index 0000000..73c1cee --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDevice.java @@ -0,0 +1,168 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussDevice implements Serializable { + private Integer id; + + private String name; + + private String vendercode; + + private String matno; + + private String devicelogo; + + private String vendername; + + private String vendermodel; + + private String aislemodel; + + private String type; + + private String introdesc; + + private Integer seq; + + private Integer status; + + private Date createdt; + + private Integer inventory; + + private Double unitprice; + + private String detail; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getVendercode() { + return vendercode; + } + + public void setVendercode(String vendercode) { + this.vendercode = vendercode == null ? null : vendercode.trim(); + } + + public String getMatno() { + return matno; + } + + public void setMatno(String matno) { + this.matno = matno == null ? null : matno.trim(); + } + + public String getDevicelogo() { + return devicelogo; + } + + public void setDevicelogo(String devicelogo) { + this.devicelogo = devicelogo == null ? null : devicelogo.trim(); + } + + public String getVendername() { + return vendername; + } + + public void setVendername(String vendername) { + this.vendername = vendername == null ? null : vendername.trim(); + } + + public String getVendermodel() { + return vendermodel; + } + + public void setVendermodel(String vendermodel) { + this.vendermodel = vendermodel == null ? null : vendermodel.trim(); + } + + public String getAislemodel() { + return aislemodel; + } + + public void setAislemodel(String aislemodel) { + this.aislemodel = aislemodel == null ? null : aislemodel.trim(); + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public String getIntrodesc() { + return introdesc; + } + + public void setIntrodesc(String introdesc) { + this.introdesc = introdesc == null ? null : introdesc.trim(); + } + + public Integer getSeq() { + return seq; + } + + public void setSeq(Integer seq) { + this.seq = seq; + } + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public Integer getInventory() { + return inventory; + } + + public void setInventory(Integer inventory) { + this.inventory = inventory; + } + + public Double getUnitprice() { + return unitprice; + } + + public void setUnitprice(Double unitprice) { + this.unitprice = unitprice; + } + + public String getDetail() { + return detail; + } + + public void setDetail(String detail) { + this.detail = detail == null ? null : detail.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceBsj.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceBsj.java new file mode 100644 index 0000000..d8b252f --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceBsj.java @@ -0,0 +1,68 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussDeviceBsj implements Serializable { + private String snno; + + private String deviceno; + + private String imei; + + private String iccid; + + private String sim; + + private Date simexpiretime; + + private static final long serialVersionUID = 1L; + + public String getSnno() { + return snno; + } + + public void setSnno(String snno) { + this.snno = snno == null ? null : snno.trim(); + } + + public String getDeviceno() { + return deviceno; + } + + public void setDeviceno(String deviceno) { + this.deviceno = deviceno == null ? null : deviceno.trim(); + } + + public String getImei() { + return imei; + } + + public void setImei(String imei) { + this.imei = imei == null ? null : imei.trim(); + } + + public String getIccid() { + return iccid; + } + + public void setIccid(String iccid) { + this.iccid = iccid == null ? null : iccid.trim(); + } + + public String getSim() { + return sim; + } + + public void setSim(String sim) { + this.sim = sim == null ? null : sim.trim(); + } + + public Date getSimexpiretime() { + return simexpiretime; + } + + public void setSimexpiretime(Date simexpiretime) { + this.simexpiretime = simexpiretime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceDetail.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceDetail.java new file mode 100644 index 0000000..3ae93f3 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceDetail.java @@ -0,0 +1,199 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussDeviceDetail implements Serializable { + private Integer id; + + private String code; + + private String vendercode; + + private String devicelogo; + + private String vendername; + + private String vendermodel; + + private String aislemodel; + + private String type; + + private String groupno; + + private String introdesc; + + private Integer seq; + + private Integer status; + + private Date createdt; + + private BigDecimal unitprice; + + private String maxordercount; + + private String detail; + + private Integer size; + + private BigDecimal wholesaleprice; + + private Integer wholesaleminnum; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public String getVendercode() { + return vendercode; + } + + public void setVendercode(String vendercode) { + this.vendercode = vendercode == null ? null : vendercode.trim(); + } + + public String getDevicelogo() { + return devicelogo; + } + + public void setDevicelogo(String devicelogo) { + this.devicelogo = devicelogo == null ? null : devicelogo.trim(); + } + + public String getVendername() { + return vendername; + } + + public void setVendername(String vendername) { + this.vendername = vendername == null ? null : vendername.trim(); + } + + public String getVendermodel() { + return vendermodel; + } + + public void setVendermodel(String vendermodel) { + this.vendermodel = vendermodel == null ? null : vendermodel.trim(); + } + + public String getAislemodel() { + return aislemodel; + } + + public void setAislemodel(String aislemodel) { + this.aislemodel = aislemodel == null ? null : aislemodel.trim(); + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public String getGroupno() { + return groupno; + } + + public void setGroupno(String groupno) { + this.groupno = groupno == null ? null : groupno.trim(); + } + + public String getIntrodesc() { + return introdesc; + } + + public void setIntrodesc(String introdesc) { + this.introdesc = introdesc == null ? null : introdesc.trim(); + } + + public Integer getSeq() { + return seq; + } + + public void setSeq(Integer seq) { + this.seq = seq; + } + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public BigDecimal getUnitprice() { + return unitprice; + } + + public void setUnitprice(BigDecimal unitprice) { + this.unitprice = unitprice; + } + + public String getMaxordercount() { + return maxordercount; + } + + public void setMaxordercount(String maxordercount) { + this.maxordercount = maxordercount == null ? null : maxordercount.trim(); + } + + public String getDetail() { + return detail; + } + + public void setDetail(String detail) { + this.detail = detail == null ? null : detail.trim(); + } + + public Integer getSize() { + return size; + } + + public void setSize(Integer size) { + this.size = size; + } + + public BigDecimal getWholesaleprice() { + return wholesaleprice; + } + + public void setWholesaleprice(BigDecimal wholesaleprice) { + this.wholesaleprice = wholesaleprice; + } + + public Integer getWholesaleminnum() { + return wholesaleminnum; + } + + public void setWholesaleminnum(Integer wholesaleminnum) { + this.wholesaleminnum = wholesaleminnum; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceGoodTag.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceGoodTag.java new file mode 100644 index 0000000..1d686a8 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceGoodTag.java @@ -0,0 +1,58 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussDeviceGoodTag implements Serializable { + private Integer id; + + private String tag; + + private Integer sort; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getTag() { + return tag; + } + + public void setTag(String tag) { + this.tag = tag == null ? null : tag.trim(); + } + + public Integer getSort() { + return sort; + } + + public void setSort(Integer sort) { + this.sort = sort; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceGoods.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceGoods.java new file mode 100644 index 0000000..0f60798 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceGoods.java @@ -0,0 +1,128 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussDeviceGoods implements Serializable { + private Integer id; + + private String code; + + private String name; + + private String devicelogo; + + private String introdesc; + + private Integer sort; + + private Integer status; + + private Integer tagid; + + private String depositflag; + + private Date createtime; + + private Date updatetime; + + private String detail; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getDevicelogo() { + return devicelogo; + } + + public void setDevicelogo(String devicelogo) { + this.devicelogo = devicelogo == null ? null : devicelogo.trim(); + } + + public String getIntrodesc() { + return introdesc; + } + + public void setIntrodesc(String introdesc) { + this.introdesc = introdesc == null ? null : introdesc.trim(); + } + + public Integer getSort() { + return sort; + } + + public void setSort(Integer sort) { + this.sort = sort; + } + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public Integer getTagid() { + return tagid; + } + + public void setTagid(Integer tagid) { + this.tagid = tagid; + } + + public String getDepositflag() { + return depositflag; + } + + public void setDepositflag(String depositflag) { + this.depositflag = depositflag == null ? null : depositflag.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getDetail() { + return detail; + } + + public void setDetail(String detail) { + this.detail = detail == null ? null : detail.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceMerchantBuy.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceMerchantBuy.java new file mode 100644 index 0000000..bc7c700 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceMerchantBuy.java @@ -0,0 +1,258 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussDeviceMerchantBuy implements Serializable { + private Integer id; + + private String orderno; + + private String transno; + + private Double orderamount; + + private Integer quantity; + + private String merchantcode; + + private String merchantname; + + private String vendercode; + + private String vendermodel; + + private String status; + + private String paycode; + + private String payname; + + private Date createdt; + + private Date transdt; + + private String refundno; + + private Date refunddt; + + private String expressno; + + private String provinces; + + private String address; + + private String linkname; + + private String linkphone; + + private String email; + + private String actstatus; + + private String snno; + + private String logistno; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getOrderno() { + return orderno; + } + + public void setOrderno(String orderno) { + this.orderno = orderno == null ? null : orderno.trim(); + } + + public String getTransno() { + return transno; + } + + public void setTransno(String transno) { + this.transno = transno == null ? null : transno.trim(); + } + + public Double getOrderamount() { + return orderamount; + } + + public void setOrderamount(Double orderamount) { + this.orderamount = orderamount; + } + + public Integer getQuantity() { + return quantity; + } + + public void setQuantity(Integer quantity) { + this.quantity = quantity; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public String getVendercode() { + return vendercode; + } + + public void setVendercode(String vendercode) { + this.vendercode = vendercode == null ? null : vendercode.trim(); + } + + public String getVendermodel() { + return vendermodel; + } + + public void setVendermodel(String vendermodel) { + this.vendermodel = vendermodel == null ? null : vendermodel.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public String getPaycode() { + return paycode; + } + + public void setPaycode(String paycode) { + this.paycode = paycode == null ? null : paycode.trim(); + } + + public String getPayname() { + return payname; + } + + public void setPayname(String payname) { + this.payname = payname == null ? null : payname.trim(); + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public Date getTransdt() { + return transdt; + } + + public void setTransdt(Date transdt) { + this.transdt = transdt; + } + + public String getRefundno() { + return refundno; + } + + public void setRefundno(String refundno) { + this.refundno = refundno == null ? null : refundno.trim(); + } + + public Date getRefunddt() { + return refunddt; + } + + public void setRefunddt(Date refunddt) { + this.refunddt = refunddt; + } + + public String getExpressno() { + return expressno; + } + + public void setExpressno(String expressno) { + this.expressno = expressno == null ? null : expressno.trim(); + } + + public String getProvinces() { + return provinces; + } + + public void setProvinces(String provinces) { + this.provinces = provinces == null ? null : provinces.trim(); + } + + public String getAddress() { + return address; + } + + public void setAddress(String address) { + this.address = address == null ? null : address.trim(); + } + + public String getLinkname() { + return linkname; + } + + public void setLinkname(String linkname) { + this.linkname = linkname == null ? null : linkname.trim(); + } + + public String getLinkphone() { + return linkphone; + } + + public void setLinkphone(String linkphone) { + this.linkphone = linkphone == null ? null : linkphone.trim(); + } + + public String getEmail() { + return email; + } + + public void setEmail(String email) { + this.email = email == null ? null : email.trim(); + } + + public String getActstatus() { + return actstatus; + } + + public void setActstatus(String actstatus) { + this.actstatus = actstatus == null ? null : actstatus.trim(); + } + + public String getSnno() { + return snno; + } + + public void setSnno(String snno) { + this.snno = snno == null ? null : snno.trim(); + } + + public String getLogistno() { + return logistno; + } + + public void setLogistno(String logistno) { + this.logistno = logistno == null ? null : logistno.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceMerchantBuyDetail.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceMerchantBuyDetail.java new file mode 100644 index 0000000..a9703ac --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceMerchantBuyDetail.java @@ -0,0 +1,37 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussDeviceMerchantBuyDetail implements Serializable { + private Integer id; + + private String orderno; + + private String solecode; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getOrderno() { + return orderno; + } + + public void setOrderno(String orderno) { + this.orderno = orderno == null ? null : orderno.trim(); + } + + public String getSolecode() { + return solecode; + } + + public void setSolecode(String solecode) { + this.solecode = solecode == null ? null : solecode.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceOperateInfo.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceOperateInfo.java new file mode 100644 index 0000000..03e9ba3 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceOperateInfo.java @@ -0,0 +1,68 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussDeviceOperateInfo implements Serializable { + private Integer id; + + private String deviceno; + + private String type; + + private Integer userid; + + private Date createtime; + + private String remark; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getDeviceno() { + return deviceno; + } + + public void setDeviceno(String deviceno) { + this.deviceno = deviceno == null ? null : deviceno.trim(); + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceOrderInfo.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceOrderInfo.java new file mode 100644 index 0000000..23718f3 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceOrderInfo.java @@ -0,0 +1,139 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussDeviceOrderInfo implements Serializable { + private Integer id; + + private String orderno; + + private String transno; + + private String userid; + + private String code; + + private String devicetype; + + private String ordertype; + + private String groupno; + + private Integer num; + + private BigDecimal sumprice; + + private Date createtime; + + private Date updatetime; + + private String status; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getOrderno() { + return orderno; + } + + public void setOrderno(String orderno) { + this.orderno = orderno == null ? null : orderno.trim(); + } + + public String getTransno() { + return transno; + } + + public void setTransno(String transno) { + this.transno = transno == null ? null : transno.trim(); + } + + public String getUserid() { + return userid; + } + + public void setUserid(String userid) { + this.userid = userid == null ? null : userid.trim(); + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public String getDevicetype() { + return devicetype; + } + + public void setDevicetype(String devicetype) { + this.devicetype = devicetype == null ? null : devicetype.trim(); + } + + public String getOrdertype() { + return ordertype; + } + + public void setOrdertype(String ordertype) { + this.ordertype = ordertype == null ? null : ordertype.trim(); + } + + public String getGroupno() { + return groupno; + } + + public void setGroupno(String groupno) { + this.groupno = groupno == null ? null : groupno.trim(); + } + + public Integer getNum() { + return num; + } + + public void setNum(Integer num) { + this.num = num; + } + + public BigDecimal getSumprice() { + return sumprice; + } + + public void setSumprice(BigDecimal sumprice) { + this.sumprice = sumprice; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceSignUnbind.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceSignUnbind.java new file mode 100644 index 0000000..c0b13a6 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceSignUnbind.java @@ -0,0 +1,128 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussDeviceSignUnbind implements Serializable { + private Integer id; + + private String orderno; + + private String solecode; + + private String vendercode; + + private String vendermodel; + + private String sn; + + private String merchantcode; + + private String merchantname; + + private String mchid; + + private String status; + + private Date createdt; + + private String reason; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getOrderno() { + return orderno; + } + + public void setOrderno(String orderno) { + this.orderno = orderno == null ? null : orderno.trim(); + } + + public String getSolecode() { + return solecode; + } + + public void setSolecode(String solecode) { + this.solecode = solecode == null ? null : solecode.trim(); + } + + public String getVendercode() { + return vendercode; + } + + public void setVendercode(String vendercode) { + this.vendercode = vendercode == null ? null : vendercode.trim(); + } + + public String getVendermodel() { + return vendermodel; + } + + public void setVendermodel(String vendermodel) { + this.vendermodel = vendermodel == null ? null : vendermodel.trim(); + } + + public String getSn() { + return sn; + } + + public void setSn(String sn) { + this.sn = sn == null ? null : sn.trim(); + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public String getMchid() { + return mchid; + } + + public void setMchid(String mchid) { + this.mchid = mchid == null ? null : mchid.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public String getReason() { + return reason; + } + + public void setReason(String reason) { + this.reason = reason == null ? null : reason.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceSpec.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceSpec.java new file mode 100644 index 0000000..44c2ff2 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceSpec.java @@ -0,0 +1,129 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussDeviceSpec implements Serializable { + private Integer id; + + private String code; + + private String spec; + + private String specname; + + private String specdesc; + + private String type; + + private Date createtime; + + private Date updatetime; + + private Integer creator; + + private Integer updater; + + private String postageflag; + + private BigDecimal weight; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public String getSpec() { + return spec; + } + + public void setSpec(String spec) { + this.spec = spec == null ? null : spec.trim(); + } + + public String getSpecname() { + return specname; + } + + public void setSpecname(String specname) { + this.specname = specname == null ? null : specname.trim(); + } + + public String getSpecdesc() { + return specdesc; + } + + public void setSpecdesc(String specdesc) { + this.specdesc = specdesc == null ? null : specdesc.trim(); + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public Integer getCreator() { + return creator; + } + + public void setCreator(Integer creator) { + this.creator = creator; + } + + public Integer getUpdater() { + return updater; + } + + public void setUpdater(Integer updater) { + this.updater = updater; + } + + public String getPostageflag() { + return postageflag; + } + + public void setPostageflag(String postageflag) { + this.postageflag = postageflag == null ? null : postageflag.trim(); + } + + public BigDecimal getWeight() { + return weight; + } + + public void setWeight(BigDecimal weight) { + this.weight = weight; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceStock.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceStock.java new file mode 100644 index 0000000..754ea65 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceStock.java @@ -0,0 +1,249 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussDeviceStock implements Serializable { + private Integer id; + + private String code; + + private String snno; + + private String orderno; + + private BigDecimal price; + + private String type; + + private String groupno; + + private String buymercname; + + private String buymercid; + + private String actmercname; + + private String actmercid; + + private String status; + + private Date createtime; + + private String createby; + + private String delflag; + + private String remarks; + + private Date updatetime; + + private String deviceno; + + private Integer belonguserid; + + private Integer extractuserid; + + private String rolecode; + + private Date instocktime; + + private String transferstatus; + + private Date bindtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public String getSnno() { + return snno; + } + + public void setSnno(String snno) { + this.snno = snno == null ? null : snno.trim(); + } + + public String getOrderno() { + return orderno; + } + + public void setOrderno(String orderno) { + this.orderno = orderno == null ? null : orderno.trim(); + } + + public BigDecimal getPrice() { + return price; + } + + public void setPrice(BigDecimal price) { + this.price = price; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public String getGroupno() { + return groupno; + } + + public void setGroupno(String groupno) { + this.groupno = groupno == null ? null : groupno.trim(); + } + + public String getBuymercname() { + return buymercname; + } + + public void setBuymercname(String buymercname) { + this.buymercname = buymercname == null ? null : buymercname.trim(); + } + + public String getBuymercid() { + return buymercid; + } + + public void setBuymercid(String buymercid) { + this.buymercid = buymercid == null ? null : buymercid.trim(); + } + + public String getActmercname() { + return actmercname; + } + + public void setActmercname(String actmercname) { + this.actmercname = actmercname == null ? null : actmercname.trim(); + } + + public String getActmercid() { + return actmercid; + } + + public void setActmercid(String actmercid) { + this.actmercid = actmercid == null ? null : actmercid.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public String getCreateby() { + return createby; + } + + public void setCreateby(String createby) { + this.createby = createby == null ? null : createby.trim(); + } + + public String getDelflag() { + return delflag; + } + + public void setDelflag(String delflag) { + this.delflag = delflag == null ? null : delflag.trim(); + } + + public String getRemarks() { + return remarks; + } + + public void setRemarks(String remarks) { + this.remarks = remarks == null ? null : remarks.trim(); + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getDeviceno() { + return deviceno; + } + + public void setDeviceno(String deviceno) { + this.deviceno = deviceno == null ? null : deviceno.trim(); + } + + public Integer getBelonguserid() { + return belonguserid; + } + + public void setBelonguserid(Integer belonguserid) { + this.belonguserid = belonguserid; + } + + public Integer getExtractuserid() { + return extractuserid; + } + + public void setExtractuserid(Integer extractuserid) { + this.extractuserid = extractuserid; + } + + public String getRolecode() { + return rolecode; + } + + public void setRolecode(String rolecode) { + this.rolecode = rolecode == null ? null : rolecode.trim(); + } + + public Date getInstocktime() { + return instocktime; + } + + public void setInstocktime(Date instocktime) { + this.instocktime = instocktime; + } + + public String getTransferstatus() { + return transferstatus; + } + + public void setTransferstatus(String transferstatus) { + this.transferstatus = transferstatus == null ? null : transferstatus.trim(); + } + + public Date getBindtime() { + return bindtime; + } + + public void setBindtime(Date bindtime) { + this.bindtime = bindtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceStockGroup.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceStockGroup.java new file mode 100644 index 0000000..6e52909 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceStockGroup.java @@ -0,0 +1,98 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussDeviceStockGroup implements Serializable { + private Integer id; + + private String groupcode; + + private String groupname; + + private String desc; + + private Integer sort; + + private Date createtime; + + private Date updatetime; + + private Integer creator; + + private Integer updater; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getGroupcode() { + return groupcode; + } + + public void setGroupcode(String groupcode) { + this.groupcode = groupcode == null ? null : groupcode.trim(); + } + + public String getGroupname() { + return groupname; + } + + public void setGroupname(String groupname) { + this.groupname = groupname == null ? null : groupname.trim(); + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc == null ? null : desc.trim(); + } + + public Integer getSort() { + return sort; + } + + public void setSort(Integer sort) { + this.sort = sort; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public Integer getCreator() { + return creator; + } + + public void setCreator(Integer creator) { + this.creator = creator; + } + + public Integer getUpdater() { + return updater; + } + + public void setUpdater(Integer updater) { + this.updater = updater; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceTransfer.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceTransfer.java new file mode 100644 index 0000000..305bd17 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceTransfer.java @@ -0,0 +1,88 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussDeviceTransfer implements Serializable { + private Integer id; + + private Integer userid; + + private Integer acceptuserid; + + private String status; + + private Date transfertime; + + private Date accepttime; + + private String batchno; + + private String remark; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public Integer getAcceptuserid() { + return acceptuserid; + } + + public void setAcceptuserid(Integer acceptuserid) { + this.acceptuserid = acceptuserid; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public Date getTransfertime() { + return transfertime; + } + + public void setTransfertime(Date transfertime) { + this.transfertime = transfertime; + } + + public Date getAccepttime() { + return accepttime; + } + + public void setAccepttime(Date accepttime) { + this.accepttime = accepttime; + } + + public String getBatchno() { + return batchno; + } + + public void setBatchno(String batchno) { + this.batchno = batchno == null ? null : batchno.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceTransferDetail.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceTransferDetail.java new file mode 100644 index 0000000..a21923d --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceTransferDetail.java @@ -0,0 +1,58 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussDeviceTransferDetail implements Serializable { + private Integer id; + + private Integer tid; + + private String deviceno; + + private Date createtime; + + private String batchno; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getTid() { + return tid; + } + + public void setTid(Integer tid) { + this.tid = tid; + } + + public String getDeviceno() { + return deviceno; + } + + public void setDeviceno(String deviceno) { + this.deviceno = deviceno == null ? null : deviceno.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public String getBatchno() { + return batchno; + } + + public void setBatchno(String batchno) { + this.batchno = batchno == null ? null : batchno.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceType.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceType.java new file mode 100644 index 0000000..652cd41 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceType.java @@ -0,0 +1,118 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussDeviceType implements Serializable { + private Integer id; + + private String code; + + private String name; + + private String desc; + + private Date createtime; + + private Date updatetime; + + private Integer creator; + + private Integer updater; + + private String showflag; + + private String devicelogo; + + private String paycodeflag; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc == null ? null : desc.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public Integer getCreator() { + return creator; + } + + public void setCreator(Integer creator) { + this.creator = creator; + } + + public Integer getUpdater() { + return updater; + } + + public void setUpdater(Integer updater) { + this.updater = updater; + } + + public String getShowflag() { + return showflag; + } + + public void setShowflag(String showflag) { + this.showflag = showflag == null ? null : showflag.trim(); + } + + public String getDevicelogo() { + return devicelogo; + } + + public void setDevicelogo(String devicelogo) { + this.devicelogo = devicelogo == null ? null : devicelogo.trim(); + } + + public String getPaycodeflag() { + return paycodeflag; + } + + public void setPaycodeflag(String paycodeflag) { + this.paycodeflag = paycodeflag == null ? null : paycodeflag.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceVoiceBox.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceVoiceBox.java new file mode 100644 index 0000000..05bb31b --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceVoiceBox.java @@ -0,0 +1,118 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussDeviceVoiceBox implements Serializable { + private Integer id; + + private String boxname; + + private String boxno; + + private String buymercname; + + private Integer buymercid; + + private String orderno; + + private String actmercname; + + private Integer actmercid; + + private String status; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getBoxname() { + return boxname; + } + + public void setBoxname(String boxname) { + this.boxname = boxname == null ? null : boxname.trim(); + } + + public String getBoxno() { + return boxno; + } + + public void setBoxno(String boxno) { + this.boxno = boxno == null ? null : boxno.trim(); + } + + public String getBuymercname() { + return buymercname; + } + + public void setBuymercname(String buymercname) { + this.buymercname = buymercname == null ? null : buymercname.trim(); + } + + public Integer getBuymercid() { + return buymercid; + } + + public void setBuymercid(Integer buymercid) { + this.buymercid = buymercid; + } + + public String getOrderno() { + return orderno; + } + + public void setOrderno(String orderno) { + this.orderno = orderno == null ? null : orderno.trim(); + } + + public String getActmercname() { + return actmercname; + } + + public void setActmercname(String actmercname) { + this.actmercname = actmercname == null ? null : actmercname.trim(); + } + + public Integer getActmercid() { + return actmercid; + } + + public void setActmercid(Integer actmercid) { + this.actmercid = actmercid; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceVoiceBoxMsg.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceVoiceBoxMsg.java new file mode 100644 index 0000000..c645d52 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceVoiceBoxMsg.java @@ -0,0 +1,78 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussDeviceVoiceBoxMsg implements Serializable { + private Integer id; + + private String requestid; + + private String msgid; + + private Date createtime; + + private String deviceno; + + private String ordernumber; + + private String type; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getRequestid() { + return requestid; + } + + public void setRequestid(String requestid) { + this.requestid = requestid == null ? null : requestid.trim(); + } + + public String getMsgid() { + return msgid; + } + + public void setMsgid(String msgid) { + this.msgid = msgid == null ? null : msgid.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public String getDeviceno() { + return deviceno; + } + + public void setDeviceno(String deviceno) { + this.deviceno = deviceno == null ? null : deviceno.trim(); + } + + public String getOrdernumber() { + return ordernumber; + } + + public void setOrdernumber(String ordernumber) { + this.ordernumber = ordernumber == null ? null : ordernumber.trim(); + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceVoiceBoxMsgWithBLOBs.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceVoiceBoxMsgWithBLOBs.java new file mode 100644 index 0000000..cbc6d97 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDeviceVoiceBoxMsgWithBLOBs.java @@ -0,0 +1,27 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussDeviceVoiceBoxMsgWithBLOBs extends TbPlussDeviceVoiceBoxMsg implements Serializable { + private String body; + + private String respbody; + + private static final long serialVersionUID = 1L; + + public String getBody() { + return body; + } + + public void setBody(String body) { + this.body = body == null ? null : body.trim(); + } + + public String getRespbody() { + return respbody; + } + + public void setRespbody(String respbody) { + this.respbody = respbody == null ? null : respbody.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDict.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDict.java new file mode 100644 index 0000000..a5dfa9e --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussDict.java @@ -0,0 +1,98 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussDict implements Serializable { + private Integer id; + + private Integer pid; + + private Integer sort; + + private String code; + + private String name; + + private String desc; + + private String value; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getPid() { + return pid; + } + + public void setPid(Integer pid) { + this.pid = pid; + } + + public Integer getSort() { + return sort; + } + + public void setSort(Integer sort) { + this.sort = sort; + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc == null ? null : desc.trim(); + } + + public String getValue() { + return value; + } + + public void setValue(String value) { + this.value = value == null ? null : value.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussEncryptKey.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussEncryptKey.java new file mode 100644 index 0000000..e1b17cf --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussEncryptKey.java @@ -0,0 +1,88 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussEncryptKey implements Serializable { + private Integer id; + + private String name; + + private String code; + + private String desc; + + private String version; + + private String status; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc == null ? null : desc.trim(); + } + + public String getVersion() { + return version; + } + + public void setVersion(String version) { + this.version = version == null ? null : version.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussEncryptKeyWithBLOBs.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussEncryptKeyWithBLOBs.java new file mode 100644 index 0000000..4e6bc2e --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussEncryptKeyWithBLOBs.java @@ -0,0 +1,27 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussEncryptKeyWithBLOBs extends TbPlussEncryptKey implements Serializable { + private String prikey; + + private String pubkey; + + private static final long serialVersionUID = 1L; + + public String getPrikey() { + return prikey; + } + + public void setPrikey(String prikey) { + this.prikey = prikey == null ? null : prikey.trim(); + } + + public String getPubkey() { + return pubkey; + } + + public void setPubkey(String pubkey) { + this.pubkey = pubkey == null ? null : pubkey.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussExtraLevelBenefit.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussExtraLevelBenefit.java new file mode 100644 index 0000000..201e488 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussExtraLevelBenefit.java @@ -0,0 +1,68 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussExtraLevelBenefit implements Serializable { + private Integer id; + + private Integer userid; + + private Integer maxcount; + + private Integer usecount; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public Integer getMaxcount() { + return maxcount; + } + + public void setMaxcount(Integer maxcount) { + this.maxcount = maxcount; + } + + public Integer getUsecount() { + return usecount; + } + + public void setUsecount(Integer usecount) { + this.usecount = usecount; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussFans.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussFans.java new file mode 100644 index 0000000..74c00d4 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussFans.java @@ -0,0 +1,178 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussFans implements Serializable { + private Integer id; + + private String userid; + + private String logo; + + private String nickname; + + private Double consummoney; + + private String merchantcode; + + private String merchantname; + + private String lastmerchantcode; + + private String sharemoney; + + private String consumaddress; + + private Date consumtime; + + private Date lastconsumtime; + + private String ordernumber; + + private String lastordernumber; + + private Date createdt; + + private String payway; + + private String isuse; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getUserid() { + return userid; + } + + public void setUserid(String userid) { + this.userid = userid == null ? null : userid.trim(); + } + + public String getLogo() { + return logo; + } + + public void setLogo(String logo) { + this.logo = logo == null ? null : logo.trim(); + } + + public String getNickname() { + return nickname; + } + + public void setNickname(String nickname) { + this.nickname = nickname == null ? null : nickname.trim(); + } + + public Double getConsummoney() { + return consummoney; + } + + public void setConsummoney(Double consummoney) { + this.consummoney = consummoney; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public String getLastmerchantcode() { + return lastmerchantcode; + } + + public void setLastmerchantcode(String lastmerchantcode) { + this.lastmerchantcode = lastmerchantcode == null ? null : lastmerchantcode.trim(); + } + + public String getSharemoney() { + return sharemoney; + } + + public void setSharemoney(String sharemoney) { + this.sharemoney = sharemoney == null ? null : sharemoney.trim(); + } + + public String getConsumaddress() { + return consumaddress; + } + + public void setConsumaddress(String consumaddress) { + this.consumaddress = consumaddress == null ? null : consumaddress.trim(); + } + + public Date getConsumtime() { + return consumtime; + } + + public void setConsumtime(Date consumtime) { + this.consumtime = consumtime; + } + + public Date getLastconsumtime() { + return lastconsumtime; + } + + public void setLastconsumtime(Date lastconsumtime) { + this.lastconsumtime = lastconsumtime; + } + + public String getOrdernumber() { + return ordernumber; + } + + public void setOrdernumber(String ordernumber) { + this.ordernumber = ordernumber == null ? null : ordernumber.trim(); + } + + public String getLastordernumber() { + return lastordernumber; + } + + public void setLastordernumber(String lastordernumber) { + this.lastordernumber = lastordernumber == null ? null : lastordernumber.trim(); + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public String getPayway() { + return payway; + } + + public void setPayway(String payway) { + this.payway = payway == null ? null : payway.trim(); + } + + public String getIsuse() { + return isuse; + } + + public void setIsuse(String isuse) { + this.isuse = isuse == null ? null : isuse.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussFansConsumReturn.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussFansConsumReturn.java new file mode 100644 index 0000000..46befce --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussFansConsumReturn.java @@ -0,0 +1,108 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussFansConsumReturn implements Serializable { + private Integer id; + + private String logo; + + private String nickname; + + private Double consummony; + + private String merchantcode; + + private String merchantname; + + private Double returnmoney; + + private Date consumtime; + + private String ordernumber; + + private Date createdt; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getLogo() { + return logo; + } + + public void setLogo(String logo) { + this.logo = logo == null ? null : logo.trim(); + } + + public String getNickname() { + return nickname; + } + + public void setNickname(String nickname) { + this.nickname = nickname == null ? null : nickname.trim(); + } + + public Double getConsummony() { + return consummony; + } + + public void setConsummony(Double consummony) { + this.consummony = consummony; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public Double getReturnmoney() { + return returnmoney; + } + + public void setReturnmoney(Double returnmoney) { + this.returnmoney = returnmoney; + } + + public Date getConsumtime() { + return consumtime; + } + + public void setConsumtime(Date consumtime) { + this.consumtime = consumtime; + } + + public String getOrdernumber() { + return ordernumber; + } + + public void setOrdernumber(String ordernumber) { + this.ordernumber = ordernumber == null ? null : ordernumber.trim(); + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussGuideLabel.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussGuideLabel.java new file mode 100644 index 0000000..e988c95 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussGuideLabel.java @@ -0,0 +1,58 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussGuideLabel implements Serializable { + private Integer id; + + private String name; + + private String status; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussHelpVideo.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussHelpVideo.java new file mode 100644 index 0000000..3d6eb05 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussHelpVideo.java @@ -0,0 +1,78 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussHelpVideo implements Serializable { + private Integer id; + + private String name; + + private Date createdt; + + private String content; + + private String videourl; + + private String type; + + private Integer sort; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content == null ? null : content.trim(); + } + + public String getVideourl() { + return videourl; + } + + public void setVideourl(String videourl) { + this.videourl = videourl == null ? null : videourl.trim(); + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public Integer getSort() { + return sort; + } + + public void setSort(Integer sort) { + this.sort = sort; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussIdCard.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussIdCard.java new file mode 100644 index 0000000..2e5664b --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussIdCard.java @@ -0,0 +1,148 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussIdCard implements Serializable { + private Integer id; + + private Integer userid; + + private String usertype; + + private String certtype; + + private String certno; + + private String certname; + + private String certstarttime; + + private String certendtime; + + private String certaddress; + + private Date createtime; + + private Date updatetime; + + private String imgpositive; + + private String imgnegative; + + private String virtypeflag; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getUsertype() { + return usertype; + } + + public void setUsertype(String usertype) { + this.usertype = usertype == null ? null : usertype.trim(); + } + + public String getCerttype() { + return certtype; + } + + public void setCerttype(String certtype) { + this.certtype = certtype == null ? null : certtype.trim(); + } + + public String getCertno() { + return certno; + } + + public void setCertno(String certno) { + this.certno = certno == null ? null : certno.trim(); + } + + public String getCertname() { + return certname; + } + + public void setCertname(String certname) { + this.certname = certname == null ? null : certname.trim(); + } + + public String getCertstarttime() { + return certstarttime; + } + + public void setCertstarttime(String certstarttime) { + this.certstarttime = certstarttime == null ? null : certstarttime.trim(); + } + + public String getCertendtime() { + return certendtime; + } + + public void setCertendtime(String certendtime) { + this.certendtime = certendtime == null ? null : certendtime.trim(); + } + + public String getCertaddress() { + return certaddress; + } + + public void setCertaddress(String certaddress) { + this.certaddress = certaddress == null ? null : certaddress.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getImgpositive() { + return imgpositive; + } + + public void setImgpositive(String imgpositive) { + this.imgpositive = imgpositive == null ? null : imgpositive.trim(); + } + + public String getImgnegative() { + return imgnegative; + } + + public void setImgnegative(String imgnegative) { + this.imgnegative = imgnegative == null ? null : imgnegative.trim(); + } + + public String getVirtypeflag() { + return virtypeflag; + } + + public void setVirtypeflag(String virtypeflag) { + this.virtypeflag = virtypeflag == null ? null : virtypeflag.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussIdCardCache.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussIdCardCache.java new file mode 100644 index 0000000..09cb03a --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussIdCardCache.java @@ -0,0 +1,77 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussIdCardCache implements Serializable { + private Integer id; + + private String name; + + private String certno; + + private String certstarttime; + + private String certendtime; + + private String imgpositive; + + private String address; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getCertno() { + return certno; + } + + public void setCertno(String certno) { + this.certno = certno == null ? null : certno.trim(); + } + + public String getCertstarttime() { + return certstarttime; + } + + public void setCertstarttime(String certstarttime) { + this.certstarttime = certstarttime == null ? null : certstarttime.trim(); + } + + public String getCertendtime() { + return certendtime; + } + + public void setCertendtime(String certendtime) { + this.certendtime = certendtime == null ? null : certendtime.trim(); + } + + public String getImgpositive() { + return imgpositive; + } + + public void setImgpositive(String imgpositive) { + this.imgpositive = imgpositive == null ? null : imgpositive.trim(); + } + + public String getAddress() { + return address; + } + + public void setAddress(String address) { + this.address = address == null ? null : address.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussImgReflect.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussImgReflect.java new file mode 100644 index 0000000..3850968 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussImgReflect.java @@ -0,0 +1,68 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussImgReflect implements Serializable { + private Integer id; + + private String localurl; + + private String ossurl; + + private Date createtime; + + private Date updatetime; + + private String status; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getLocalurl() { + return localurl; + } + + public void setLocalurl(String localurl) { + this.localurl = localurl == null ? null : localurl.trim(); + } + + public String getOssurl() { + return ossurl; + } + + public void setOssurl(String ossurl) { + this.ossurl = ossurl == null ? null : ossurl.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussInviteRate.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussInviteRate.java new file mode 100644 index 0000000..9fe0a8b --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussInviteRate.java @@ -0,0 +1,109 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussInviteRate implements Serializable { + private Integer id; + + private Integer number; + + private BigDecimal rate; + + private Date starttime; + + private Date endtime; + + private Date createtime; + + private Date updatetime; + + private String type; + + private Integer actid; + + private String actname; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getNumber() { + return number; + } + + public void setNumber(Integer number) { + this.number = number; + } + + public BigDecimal getRate() { + return rate; + } + + public void setRate(BigDecimal rate) { + this.rate = rate; + } + + public Date getStarttime() { + return starttime; + } + + public void setStarttime(Date starttime) { + this.starttime = starttime; + } + + public Date getEndtime() { + return endtime; + } + + public void setEndtime(Date endtime) { + this.endtime = endtime; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public Integer getActid() { + return actid; + } + + public void setActid(Integer actid) { + this.actid = actid; + } + + public String getActname() { + return actname; + } + + public void setActname(String actname) { + this.actname = actname == null ? null : actname.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussIpLocationCache.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussIpLocationCache.java new file mode 100644 index 0000000..2cf9809 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussIpLocationCache.java @@ -0,0 +1,98 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussIpLocationCache implements Serializable { + private Integer id; + + private String ip; + + private String isp; + + private String country; + + private String province; + + private String city; + + private String county; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getIp() { + return ip; + } + + public void setIp(String ip) { + this.ip = ip == null ? null : ip.trim(); + } + + public String getIsp() { + return isp; + } + + public void setIsp(String isp) { + this.isp = isp == null ? null : isp.trim(); + } + + public String getCountry() { + return country; + } + + public void setCountry(String country) { + this.country = country == null ? null : country.trim(); + } + + public String getProvince() { + return province; + } + + public void setProvince(String province) { + this.province = province == null ? null : province.trim(); + } + + public String getCity() { + return city; + } + + public void setCity(String city) { + this.city = city == null ? null : city.trim(); + } + + public String getCounty() { + return county; + } + + public void setCounty(String county) { + this.county = county == null ? null : county.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftBankCard.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftBankCard.java new file mode 100644 index 0000000..1033398 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftBankCard.java @@ -0,0 +1,168 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussJftBankCard implements Serializable { + private Integer id; + + private Integer userid; + + private String bankholder; + + private String bankcardno; + + private String bankname; + + private String branchname; + + private String contactline; + + private String branchprovince; + + private String branchcity; + + private String brancharea; + + private String phone; + + private String imgurl; + + private String status; + + private Date createtime; + + private Date updatetime; + + private String bak; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getBankholder() { + return bankholder; + } + + public void setBankholder(String bankholder) { + this.bankholder = bankholder == null ? null : bankholder.trim(); + } + + public String getBankcardno() { + return bankcardno; + } + + public void setBankcardno(String bankcardno) { + this.bankcardno = bankcardno == null ? null : bankcardno.trim(); + } + + public String getBankname() { + return bankname; + } + + public void setBankname(String bankname) { + this.bankname = bankname == null ? null : bankname.trim(); + } + + public String getBranchname() { + return branchname; + } + + public void setBranchname(String branchname) { + this.branchname = branchname == null ? null : branchname.trim(); + } + + public String getContactline() { + return contactline; + } + + public void setContactline(String contactline) { + this.contactline = contactline == null ? null : contactline.trim(); + } + + public String getBranchprovince() { + return branchprovince; + } + + public void setBranchprovince(String branchprovince) { + this.branchprovince = branchprovince == null ? null : branchprovince.trim(); + } + + public String getBranchcity() { + return branchcity; + } + + public void setBranchcity(String branchcity) { + this.branchcity = branchcity == null ? null : branchcity.trim(); + } + + public String getBrancharea() { + return brancharea; + } + + public void setBrancharea(String brancharea) { + this.brancharea = brancharea == null ? null : brancharea.trim(); + } + + public String getPhone() { + return phone; + } + + public void setPhone(String phone) { + this.phone = phone == null ? null : phone.trim(); + } + + public String getImgurl() { + return imgurl; + } + + public void setImgurl(String imgurl) { + this.imgurl = imgurl == null ? null : imgurl.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getBak() { + return bak; + } + + public void setBak(String bak) { + this.bak = bak == null ? null : bak.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftMercBaseInfo.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftMercBaseInfo.java new file mode 100644 index 0000000..e7e0425 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftMercBaseInfo.java @@ -0,0 +1,268 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussJftMercBaseInfo implements Serializable { + private Integer id; + + private Integer userid; + + private String merchantcode; + + private String merchantname; + + private String merchanttype; + + private String mcc; + + private String mccname; + + private String alias; + + private String addressno; + + private String province; + + private String city; + + private String district; + + private String address; + + private String principalperson; + + private String bussauthname; + + private String bussauthnum; + + private String bussauthaddress; + + private String bussauthstarttime; + + private String bussauthendtime; + + private Date createtime; + + private Date updatetime; + + private String buslictype; + + private String frontpic; + + private String cashdesk; + + private String interior; + + private String notifyurl; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public String getMerchanttype() { + return merchanttype; + } + + public void setMerchanttype(String merchanttype) { + this.merchanttype = merchanttype == null ? null : merchanttype.trim(); + } + + public String getMcc() { + return mcc; + } + + public void setMcc(String mcc) { + this.mcc = mcc == null ? null : mcc.trim(); + } + + public String getMccname() { + return mccname; + } + + public void setMccname(String mccname) { + this.mccname = mccname == null ? null : mccname.trim(); + } + + public String getAlias() { + return alias; + } + + public void setAlias(String alias) { + this.alias = alias == null ? null : alias.trim(); + } + + public String getAddressno() { + return addressno; + } + + public void setAddressno(String addressno) { + this.addressno = addressno == null ? null : addressno.trim(); + } + + public String getProvince() { + return province; + } + + public void setProvince(String province) { + this.province = province == null ? null : province.trim(); + } + + public String getCity() { + return city; + } + + public void setCity(String city) { + this.city = city == null ? null : city.trim(); + } + + public String getDistrict() { + return district; + } + + public void setDistrict(String district) { + this.district = district == null ? null : district.trim(); + } + + public String getAddress() { + return address; + } + + public void setAddress(String address) { + this.address = address == null ? null : address.trim(); + } + + public String getPrincipalperson() { + return principalperson; + } + + public void setPrincipalperson(String principalperson) { + this.principalperson = principalperson == null ? null : principalperson.trim(); + } + + public String getBussauthname() { + return bussauthname; + } + + public void setBussauthname(String bussauthname) { + this.bussauthname = bussauthname == null ? null : bussauthname.trim(); + } + + public String getBussauthnum() { + return bussauthnum; + } + + public void setBussauthnum(String bussauthnum) { + this.bussauthnum = bussauthnum == null ? null : bussauthnum.trim(); + } + + public String getBussauthaddress() { + return bussauthaddress; + } + + public void setBussauthaddress(String bussauthaddress) { + this.bussauthaddress = bussauthaddress == null ? null : bussauthaddress.trim(); + } + + public String getBussauthstarttime() { + return bussauthstarttime; + } + + public void setBussauthstarttime(String bussauthstarttime) { + this.bussauthstarttime = bussauthstarttime == null ? null : bussauthstarttime.trim(); + } + + public String getBussauthendtime() { + return bussauthendtime; + } + + public void setBussauthendtime(String bussauthendtime) { + this.bussauthendtime = bussauthendtime == null ? null : bussauthendtime.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getBuslictype() { + return buslictype; + } + + public void setBuslictype(String buslictype) { + this.buslictype = buslictype == null ? null : buslictype.trim(); + } + + public String getFrontpic() { + return frontpic; + } + + public void setFrontpic(String frontpic) { + this.frontpic = frontpic == null ? null : frontpic.trim(); + } + + public String getCashdesk() { + return cashdesk; + } + + public void setCashdesk(String cashdesk) { + this.cashdesk = cashdesk == null ? null : cashdesk.trim(); + } + + public String getInterior() { + return interior; + } + + public void setInterior(String interior) { + this.interior = interior == null ? null : interior.trim(); + } + + public String getNotifyurl() { + return notifyurl; + } + + public void setNotifyurl(String notifyurl) { + this.notifyurl = notifyurl == null ? null : notifyurl.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftMercPaymentChannel.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftMercPaymentChannel.java new file mode 100644 index 0000000..73e4500 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftMercPaymentChannel.java @@ -0,0 +1,138 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussJftMercPaymentChannel implements Serializable { + private Integer id; + + private Integer userid; + + private String merchantcode; + + private String merchantid; + + private String status; + + private String thirdstatus; + + private String remark; + + private Date createtime; + + private Date passtime; + + private Date updatetime; + + private String applicationid; + + private String mercname; + + private String extra; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantid() { + return merchantid; + } + + public void setMerchantid(String merchantid) { + this.merchantid = merchantid == null ? null : merchantid.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public String getThirdstatus() { + return thirdstatus; + } + + public void setThirdstatus(String thirdstatus) { + this.thirdstatus = thirdstatus == null ? null : thirdstatus.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getPasstime() { + return passtime; + } + + public void setPasstime(Date passtime) { + this.passtime = passtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getApplicationid() { + return applicationid; + } + + public void setApplicationid(String applicationid) { + this.applicationid = applicationid == null ? null : applicationid.trim(); + } + + public String getMercname() { + return mercname; + } + + public void setMercname(String mercname) { + this.mercname = mercname == null ? null : mercname.trim(); + } + + public String getExtra() { + return extra; + } + + public void setExtra(String extra) { + this.extra = extra == null ? null : extra.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftMerchantRate.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftMerchantRate.java new file mode 100644 index 0000000..b90e805 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftMerchantRate.java @@ -0,0 +1,78 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussJftMerchantRate implements Serializable { + private Integer id; + + private Integer userid; + + private Integer channel; + + private String merchantid; + + private Integer alirate; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public Integer getChannel() { + return channel; + } + + public void setChannel(Integer channel) { + this.channel = channel; + } + + public String getMerchantid() { + return merchantid; + } + + public void setMerchantid(String merchantid) { + this.merchantid = merchantid == null ? null : merchantid.trim(); + } + + public Integer getAlirate() { + return alirate; + } + + public void setAlirate(Integer alirate) { + this.alirate = alirate; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftMerchantRateRecord.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftMerchantRateRecord.java new file mode 100644 index 0000000..3bf752c --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftMerchantRateRecord.java @@ -0,0 +1,98 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussJftMerchantRateRecord implements Serializable { + private Integer id; + + private Integer channel; + + private String merchantid; + + private Integer alirate; + + private String status; + + private String remark; + + private Date createtime; + + private Date updatetime; + + private String operationdate; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getChannel() { + return channel; + } + + public void setChannel(Integer channel) { + this.channel = channel; + } + + public String getMerchantid() { + return merchantid; + } + + public void setMerchantid(String merchantid) { + this.merchantid = merchantid == null ? null : merchantid.trim(); + } + + public Integer getAlirate() { + return alirate; + } + + public void setAlirate(Integer alirate) { + this.alirate = alirate; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getOperationdate() { + return operationdate; + } + + public void setOperationdate(String operationdate) { + this.operationdate = operationdate == null ? null : operationdate.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftPaymentInfo.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftPaymentInfo.java new file mode 100644 index 0000000..c3e529c --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftPaymentInfo.java @@ -0,0 +1,37 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussJftPaymentInfo implements Serializable { + private Integer id; + + private String code; + + private String name; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftReceiptInfo.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftReceiptInfo.java new file mode 100644 index 0000000..7fdd605 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftReceiptInfo.java @@ -0,0 +1,119 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussJftReceiptInfo implements Serializable { + private Integer id; + + private String projectname; + + private BigDecimal amount; + + private Integer userid; + + private Integer status; + + private Date createtime; + + private Date endtime; + + private String token; + + private String qrcodeurl; + + private String imageurl; + + private String ip; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getProjectname() { + return projectname; + } + + public void setProjectname(String projectname) { + this.projectname = projectname == null ? null : projectname.trim(); + } + + public BigDecimal getAmount() { + return amount; + } + + public void setAmount(BigDecimal amount) { + this.amount = amount; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getEndtime() { + return endtime; + } + + public void setEndtime(Date endtime) { + this.endtime = endtime; + } + + public String getToken() { + return token; + } + + public void setToken(String token) { + this.token = token == null ? null : token.trim(); + } + + public String getQrcodeurl() { + return qrcodeurl; + } + + public void setQrcodeurl(String qrcodeurl) { + this.qrcodeurl = qrcodeurl == null ? null : qrcodeurl.trim(); + } + + public String getImageurl() { + return imageurl; + } + + public void setImageurl(String imageurl) { + this.imageurl = imageurl == null ? null : imageurl.trim(); + } + + public String getIp() { + return ip; + } + + public void setIp(String ip) { + this.ip = ip == null ? null : ip.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftReceiptOrder.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftReceiptOrder.java new file mode 100644 index 0000000..8d50db1 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftReceiptOrder.java @@ -0,0 +1,309 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussJftReceiptOrder implements Serializable { + private Integer id; + + private Integer rid; + + private BigDecimal amount; + + private String status; + + private String paytype; + + private String ordernumber; + + private Integer userid; + + private String merchantcode; + + private String merchantname; + + private String payuserid; + + private String name; + + private String phone; + + private String goods; + + private String address; + + private String transno; + + private String channeltransno; + + private Date transtime; + + private Integer rate; + + private Date createtime; + + private BigDecimal channelfee; + + private BigDecimal mercfee; + + private BigDecimal cashfee; + + private String paydata; + + private String remark; + + private Date createdate; + + private BigDecimal profitfee; + + private String payusercity; + + private String subject; + + private String mercorderno; + + private String mercnotifyurl; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getRid() { + return rid; + } + + public void setRid(Integer rid) { + this.rid = rid; + } + + public BigDecimal getAmount() { + return amount; + } + + public void setAmount(BigDecimal amount) { + this.amount = amount; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public String getPaytype() { + return paytype; + } + + public void setPaytype(String paytype) { + this.paytype = paytype == null ? null : paytype.trim(); + } + + public String getOrdernumber() { + return ordernumber; + } + + public void setOrdernumber(String ordernumber) { + this.ordernumber = ordernumber == null ? null : ordernumber.trim(); + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public String getPayuserid() { + return payuserid; + } + + public void setPayuserid(String payuserid) { + this.payuserid = payuserid == null ? null : payuserid.trim(); + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getPhone() { + return phone; + } + + public void setPhone(String phone) { + this.phone = phone == null ? null : phone.trim(); + } + + public String getGoods() { + return goods; + } + + public void setGoods(String goods) { + this.goods = goods == null ? null : goods.trim(); + } + + public String getAddress() { + return address; + } + + public void setAddress(String address) { + this.address = address == null ? null : address.trim(); + } + + public String getTransno() { + return transno; + } + + public void setTransno(String transno) { + this.transno = transno == null ? null : transno.trim(); + } + + public String getChanneltransno() { + return channeltransno; + } + + public void setChanneltransno(String channeltransno) { + this.channeltransno = channeltransno == null ? null : channeltransno.trim(); + } + + public Date getTranstime() { + return transtime; + } + + public void setTranstime(Date transtime) { + this.transtime = transtime; + } + + public Integer getRate() { + return rate; + } + + public void setRate(Integer rate) { + this.rate = rate; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public BigDecimal getChannelfee() { + return channelfee; + } + + public void setChannelfee(BigDecimal channelfee) { + this.channelfee = channelfee; + } + + public BigDecimal getMercfee() { + return mercfee; + } + + public void setMercfee(BigDecimal mercfee) { + this.mercfee = mercfee; + } + + public BigDecimal getCashfee() { + return cashfee; + } + + public void setCashfee(BigDecimal cashfee) { + this.cashfee = cashfee; + } + + public String getPaydata() { + return paydata; + } + + public void setPaydata(String paydata) { + this.paydata = paydata == null ? null : paydata.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public Date getCreatedate() { + return createdate; + } + + public void setCreatedate(Date createdate) { + this.createdate = createdate; + } + + public BigDecimal getProfitfee() { + return profitfee; + } + + public void setProfitfee(BigDecimal profitfee) { + this.profitfee = profitfee; + } + + public String getPayusercity() { + return payusercity; + } + + public void setPayusercity(String payusercity) { + this.payusercity = payusercity == null ? null : payusercity.trim(); + } + + public String getSubject() { + return subject; + } + + public void setSubject(String subject) { + this.subject = subject == null ? null : subject.trim(); + } + + public String getMercorderno() { + return mercorderno; + } + + public void setMercorderno(String mercorderno) { + this.mercorderno = mercorderno == null ? null : mercorderno.trim(); + } + + public String getMercnotifyurl() { + return mercnotifyurl; + } + + public void setMercnotifyurl(String mercnotifyurl) { + this.mercnotifyurl = mercnotifyurl == null ? null : mercnotifyurl.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftReceiptPayment.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftReceiptPayment.java new file mode 100644 index 0000000..05e47c4 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftReceiptPayment.java @@ -0,0 +1,37 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussJftReceiptPayment implements Serializable { + private Integer id; + + private Integer rid; + + private Integer pid; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getRid() { + return rid; + } + + public void setRid(Integer rid) { + this.rid = rid; + } + + public Integer getPid() { + return pid; + } + + public void setPid(Integer pid) { + this.pid = pid; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftSmallClass.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftSmallClass.java new file mode 100644 index 0000000..4527864 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussJftSmallClass.java @@ -0,0 +1,98 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussJftSmallClass implements Serializable { + private Byte id; + + private String title; + + private String describe; + + private String photo; + + private String url; + + private Boolean status; + + private Byte sort; + + private Date createtime; + + private String content; + + private static final long serialVersionUID = 1L; + + public Byte getId() { + return id; + } + + public void setId(Byte id) { + this.id = id; + } + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title == null ? null : title.trim(); + } + + public String getDescribe() { + return describe; + } + + public void setDescribe(String describe) { + this.describe = describe == null ? null : describe.trim(); + } + + public String getPhoto() { + return photo; + } + + public void setPhoto(String photo) { + this.photo = photo == null ? null : photo.trim(); + } + + public String getUrl() { + return url; + } + + public void setUrl(String url) { + this.url = url == null ? null : url.trim(); + } + + public Boolean getStatus() { + return status; + } + + public void setStatus(Boolean status) { + this.status = status; + } + + public Byte getSort() { + return sort; + } + + public void setSort(Byte sort) { + this.sort = sort; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content == null ? null : content.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussLeshuaMakeMoney.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussLeshuaMakeMoney.java new file mode 100644 index 0000000..7aec988 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussLeshuaMakeMoney.java @@ -0,0 +1,177 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussLeshuaMakeMoney implements Serializable { + private Integer id; + + private String billid; + + private String createtime; + + private String merchantid; + + private Double planamount; + + private Double suspendamount; + + private Double realamount; + + private String state; + + private String failreason; + + private String remark; + + private String recreateflag; + + private String setttype; + + private String settdate; + + private String tag; + + private String bankrettime; + + private String bankaccount; + + private String bankholder; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getBillid() { + return billid; + } + + public void setBillid(String billid) { + this.billid = billid == null ? null : billid.trim(); + } + + public String getCreatetime() { + return createtime; + } + + public void setCreatetime(String createtime) { + this.createtime = createtime == null ? null : createtime.trim(); + } + + public String getMerchantid() { + return merchantid; + } + + public void setMerchantid(String merchantid) { + this.merchantid = merchantid == null ? null : merchantid.trim(); + } + + public Double getPlanamount() { + return planamount; + } + + public void setPlanamount(Double planamount) { + this.planamount = planamount; + } + + public Double getSuspendamount() { + return suspendamount; + } + + public void setSuspendamount(Double suspendamount) { + this.suspendamount = suspendamount; + } + + public Double getRealamount() { + return realamount; + } + + public void setRealamount(Double realamount) { + this.realamount = realamount; + } + + public String getState() { + return state; + } + + public void setState(String state) { + this.state = state == null ? null : state.trim(); + } + + public String getFailreason() { + return failreason; + } + + public void setFailreason(String failreason) { + this.failreason = failreason == null ? null : failreason.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public String getRecreateflag() { + return recreateflag; + } + + public void setRecreateflag(String recreateflag) { + this.recreateflag = recreateflag == null ? null : recreateflag.trim(); + } + + public String getSetttype() { + return setttype; + } + + public void setSetttype(String setttype) { + this.setttype = setttype == null ? null : setttype.trim(); + } + + public String getSettdate() { + return settdate; + } + + public void setSettdate(String settdate) { + this.settdate = settdate == null ? null : settdate.trim(); + } + + public String getTag() { + return tag; + } + + public void setTag(String tag) { + this.tag = tag == null ? null : tag.trim(); + } + + public String getBankrettime() { + return bankrettime; + } + + public void setBankrettime(String bankrettime) { + this.bankrettime = bankrettime == null ? null : bankrettime.trim(); + } + + public String getBankaccount() { + return bankaccount; + } + + public void setBankaccount(String bankaccount) { + this.bankaccount = bankaccount == null ? null : bankaccount.trim(); + } + + public String getBankholder() { + return bankholder; + } + + public void setBankholder(String bankholder) { + this.bankholder = bankholder == null ? null : bankholder.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussLevel.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussLevel.java new file mode 100644 index 0000000..3d7843e --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussLevel.java @@ -0,0 +1,88 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussLevel implements Serializable { + private Integer id; + + private Integer level; + + private Double trademoney; + + private Integer authcount; + + private String levelname; + + private Double rate; + + private Date createdt; + + private String logo; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getLevel() { + return level; + } + + public void setLevel(Integer level) { + this.level = level; + } + + public Double getTrademoney() { + return trademoney; + } + + public void setTrademoney(Double trademoney) { + this.trademoney = trademoney; + } + + public Integer getAuthcount() { + return authcount; + } + + public void setAuthcount(Integer authcount) { + this.authcount = authcount; + } + + public String getLevelname() { + return levelname; + } + + public void setLevelname(String levelname) { + this.levelname = levelname == null ? null : levelname.trim(); + } + + public Double getRate() { + return rate; + } + + public void setRate(Double rate) { + this.rate = rate; + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public String getLogo() { + return logo; + } + + public void setLogo(String logo) { + this.logo = logo == null ? null : logo.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussLevelOperateRecord.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussLevelOperateRecord.java new file mode 100644 index 0000000..53f271a --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussLevelOperateRecord.java @@ -0,0 +1,88 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussLevelOperateRecord implements Serializable { + private Integer id; + + private Integer userid; + + private Integer operator; + + private String levelcode; + + private Date createtime; + + private Date updatetime; + + private String createmonth; + + private String flag; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public Integer getOperator() { + return operator; + } + + public void setOperator(Integer operator) { + this.operator = operator; + } + + public String getLevelcode() { + return levelcode; + } + + public void setLevelcode(String levelcode) { + this.levelcode = levelcode == null ? null : levelcode.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getCreatemonth() { + return createmonth; + } + + public void setCreatemonth(String createmonth) { + this.createmonth = createmonth == null ? null : createmonth.trim(); + } + + public String getFlag() { + return flag; + } + + public void setFlag(String flag) { + this.flag = flag == null ? null : flag.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMakeMoney.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMakeMoney.java new file mode 100644 index 0000000..2eb47aa --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMakeMoney.java @@ -0,0 +1,218 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMakeMoney implements Serializable { + private Integer id; + + private String billid; + + private String createtime; + + private String merchantid; + + private Double planamount; + + private Double suspendamount; + + private Double realamount; + + private String state; + + private String failreason; + + private String remark; + + private String recreateflag; + + private String setttype; + + private String settdate; + + private String tag; + + private Date bankrettime; + + private String bankaccount; + + private String bankholder; + + private Integer channelid; + + private String thirdstatus; + + private Date recordcreatetime; + + private Date recordupdatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getBillid() { + return billid; + } + + public void setBillid(String billid) { + this.billid = billid == null ? null : billid.trim(); + } + + public String getCreatetime() { + return createtime; + } + + public void setCreatetime(String createtime) { + this.createtime = createtime == null ? null : createtime.trim(); + } + + public String getMerchantid() { + return merchantid; + } + + public void setMerchantid(String merchantid) { + this.merchantid = merchantid == null ? null : merchantid.trim(); + } + + public Double getPlanamount() { + return planamount; + } + + public void setPlanamount(Double planamount) { + this.planamount = planamount; + } + + public Double getSuspendamount() { + return suspendamount; + } + + public void setSuspendamount(Double suspendamount) { + this.suspendamount = suspendamount; + } + + public Double getRealamount() { + return realamount; + } + + public void setRealamount(Double realamount) { + this.realamount = realamount; + } + + public String getState() { + return state; + } + + public void setState(String state) { + this.state = state == null ? null : state.trim(); + } + + public String getFailreason() { + return failreason; + } + + public void setFailreason(String failreason) { + this.failreason = failreason == null ? null : failreason.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public String getRecreateflag() { + return recreateflag; + } + + public void setRecreateflag(String recreateflag) { + this.recreateflag = recreateflag == null ? null : recreateflag.trim(); + } + + public String getSetttype() { + return setttype; + } + + public void setSetttype(String setttype) { + this.setttype = setttype == null ? null : setttype.trim(); + } + + public String getSettdate() { + return settdate; + } + + public void setSettdate(String settdate) { + this.settdate = settdate == null ? null : settdate.trim(); + } + + public String getTag() { + return tag; + } + + public void setTag(String tag) { + this.tag = tag == null ? null : tag.trim(); + } + + public Date getBankrettime() { + return bankrettime; + } + + public void setBankrettime(Date bankrettime) { + this.bankrettime = bankrettime; + } + + public String getBankaccount() { + return bankaccount; + } + + public void setBankaccount(String bankaccount) { + this.bankaccount = bankaccount == null ? null : bankaccount.trim(); + } + + public String getBankholder() { + return bankholder; + } + + public void setBankholder(String bankholder) { + this.bankholder = bankholder == null ? null : bankholder.trim(); + } + + public Integer getChannelid() { + return channelid; + } + + public void setChannelid(Integer channelid) { + this.channelid = channelid; + } + + public String getThirdstatus() { + return thirdstatus; + } + + public void setThirdstatus(String thirdstatus) { + this.thirdstatus = thirdstatus == null ? null : thirdstatus.trim(); + } + + public Date getRecordcreatetime() { + return recordcreatetime; + } + + public void setRecordcreatetime(Date recordcreatetime) { + this.recordcreatetime = recordcreatetime; + } + + public Date getRecordupdatetime() { + return recordupdatetime; + } + + public void setRecordupdatetime(Date recordupdatetime) { + this.recordupdatetime = recordupdatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMccInfo.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMccInfo.java new file mode 100644 index 0000000..7441ef6 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMccInfo.java @@ -0,0 +1,137 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussMccInfo implements Serializable { + private Integer fId; + + private String fMccCode; + + private String fMccTxt; + + private String fFatherCode; + + private String fGrandpaCode; + + private String fFatherTxt; + + private String fGrandpaTxt; + + private Integer fCommission; + + private Integer fMaxCommissionOneTransaction; + + private Byte fMccType; + + private String fMccTypeTxt; + + private Integer fDailyLimit; + + private Integer fNoPinFlag; + + private static final long serialVersionUID = 1L; + + public Integer getfId() { + return fId; + } + + public void setfId(Integer fId) { + this.fId = fId; + } + + public String getfMccCode() { + return fMccCode; + } + + public void setfMccCode(String fMccCode) { + this.fMccCode = fMccCode == null ? null : fMccCode.trim(); + } + + public String getfMccTxt() { + return fMccTxt; + } + + public void setfMccTxt(String fMccTxt) { + this.fMccTxt = fMccTxt == null ? null : fMccTxt.trim(); + } + + public String getfFatherCode() { + return fFatherCode; + } + + public void setfFatherCode(String fFatherCode) { + this.fFatherCode = fFatherCode == null ? null : fFatherCode.trim(); + } + + public String getfGrandpaCode() { + return fGrandpaCode; + } + + public void setfGrandpaCode(String fGrandpaCode) { + this.fGrandpaCode = fGrandpaCode == null ? null : fGrandpaCode.trim(); + } + + public String getfFatherTxt() { + return fFatherTxt; + } + + public void setfFatherTxt(String fFatherTxt) { + this.fFatherTxt = fFatherTxt == null ? null : fFatherTxt.trim(); + } + + public String getfGrandpaTxt() { + return fGrandpaTxt; + } + + public void setfGrandpaTxt(String fGrandpaTxt) { + this.fGrandpaTxt = fGrandpaTxt == null ? null : fGrandpaTxt.trim(); + } + + public Integer getfCommission() { + return fCommission; + } + + public void setfCommission(Integer fCommission) { + this.fCommission = fCommission; + } + + public Integer getfMaxCommissionOneTransaction() { + return fMaxCommissionOneTransaction; + } + + public void setfMaxCommissionOneTransaction(Integer fMaxCommissionOneTransaction) { + this.fMaxCommissionOneTransaction = fMaxCommissionOneTransaction; + } + + public Byte getfMccType() { + return fMccType; + } + + public void setfMccType(Byte fMccType) { + this.fMccType = fMccType; + } + + public String getfMccTypeTxt() { + return fMccTypeTxt; + } + + public void setfMccTypeTxt(String fMccTypeTxt) { + this.fMccTypeTxt = fMccTypeTxt == null ? null : fMccTypeTxt.trim(); + } + + public Integer getfDailyLimit() { + return fDailyLimit; + } + + public void setfDailyLimit(Integer fDailyLimit) { + this.fDailyLimit = fDailyLimit; + } + + public Integer getfNoPinFlag() { + return fNoPinFlag; + } + + public void setfNoPinFlag(Integer fNoPinFlag) { + this.fNoPinFlag = fNoPinFlag; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMccInfoRyx.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMccInfoRyx.java new file mode 100644 index 0000000..75702a5 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMccInfoRyx.java @@ -0,0 +1,67 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussMccInfoRyx implements Serializable { + private String type; + + private String mcc; + + private String banktypedesc; + + private String bankdetaildesc; + + private String wxtypeid; + + private String mccdesc; + + private static final long serialVersionUID = 1L; + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public String getMcc() { + return mcc; + } + + public void setMcc(String mcc) { + this.mcc = mcc == null ? null : mcc.trim(); + } + + public String getBanktypedesc() { + return banktypedesc; + } + + public void setBanktypedesc(String banktypedesc) { + this.banktypedesc = banktypedesc == null ? null : banktypedesc.trim(); + } + + public String getBankdetaildesc() { + return bankdetaildesc; + } + + public void setBankdetaildesc(String bankdetaildesc) { + this.bankdetaildesc = bankdetaildesc == null ? null : bankdetaildesc.trim(); + } + + public String getWxtypeid() { + return wxtypeid; + } + + public void setWxtypeid(String wxtypeid) { + this.wxtypeid = wxtypeid == null ? null : wxtypeid.trim(); + } + + public String getMccdesc() { + return mccdesc; + } + + public void setMccdesc(String mccdesc) { + this.mccdesc = mccdesc == null ? null : mccdesc.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMccInfoSort.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMccInfoSort.java new file mode 100644 index 0000000..9944e80 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMccInfoSort.java @@ -0,0 +1,88 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMccInfoSort implements Serializable { + private Integer id; + + private String code; + + private String mcccode; + + private String mccname; + + private String group; + + private Integer sort; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public String getMcccode() { + return mcccode; + } + + public void setMcccode(String mcccode) { + this.mcccode = mcccode == null ? null : mcccode.trim(); + } + + public String getMccname() { + return mccname; + } + + public void setMccname(String mccname) { + this.mccname = mccname == null ? null : mccname.trim(); + } + + public String getGroup() { + return group; + } + + public void setGroup(String group) { + this.group = group == null ? null : group.trim(); + } + + public Integer getSort() { + return sort; + } + + public void setSort(Integer sort) { + this.sort = sort; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMccInfoYs.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMccInfoYs.java new file mode 100644 index 0000000..b35d5d0 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMccInfoYs.java @@ -0,0 +1,138 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMccInfoYs implements Serializable { + private Integer id; + + private String mcccode; + + private String mccdesc; + + private String compan; + + private String individual; + + private String micro; + + private String type; + + private String mchtype; + + private String mchtypedesc; + + private String industry; + + private String industrydesc; + + private String creator; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMcccode() { + return mcccode; + } + + public void setMcccode(String mcccode) { + this.mcccode = mcccode == null ? null : mcccode.trim(); + } + + public String getMccdesc() { + return mccdesc; + } + + public void setMccdesc(String mccdesc) { + this.mccdesc = mccdesc == null ? null : mccdesc.trim(); + } + + public String getCompan() { + return compan; + } + + public void setCompan(String compan) { + this.compan = compan == null ? null : compan.trim(); + } + + public String getIndividual() { + return individual; + } + + public void setIndividual(String individual) { + this.individual = individual == null ? null : individual.trim(); + } + + public String getMicro() { + return micro; + } + + public void setMicro(String micro) { + this.micro = micro == null ? null : micro.trim(); + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public String getMchtype() { + return mchtype; + } + + public void setMchtype(String mchtype) { + this.mchtype = mchtype == null ? null : mchtype.trim(); + } + + public String getMchtypedesc() { + return mchtypedesc; + } + + public void setMchtypedesc(String mchtypedesc) { + this.mchtypedesc = mchtypedesc == null ? null : mchtypedesc.trim(); + } + + public String getIndustry() { + return industry; + } + + public void setIndustry(String industry) { + this.industry = industry == null ? null : industry.trim(); + } + + public String getIndustrydesc() { + return industrydesc; + } + + public void setIndustrydesc(String industrydesc) { + this.industrydesc = industrydesc == null ? null : industrydesc.trim(); + } + + public String getCreator() { + return creator; + } + + public void setCreator(String creator) { + this.creator = creator == null ? null : creator.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMccReflect.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMccReflect.java new file mode 100644 index 0000000..72d44e7 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMccReflect.java @@ -0,0 +1,68 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMccReflect implements Serializable { + private Integer id; + + private String standardMccCode; + + private String mccCode; + + private Integer channelId; + + private Date createTime; + + private Date updateTime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getStandardMccCode() { + return standardMccCode; + } + + public void setStandardMccCode(String standardMccCode) { + this.standardMccCode = standardMccCode == null ? null : standardMccCode.trim(); + } + + public String getMccCode() { + return mccCode; + } + + public void setMccCode(String mccCode) { + this.mccCode = mccCode == null ? null : mccCode.trim(); + } + + public Integer getChannelId() { + return channelId; + } + + public void setChannelId(Integer channelId) { + this.channelId = channelId; + } + + public Date getCreateTime() { + return createTime; + } + + public void setCreateTime(Date createTime) { + this.createTime = createTime; + } + + public Date getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(Date updateTime) { + this.updateTime = updateTime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMemberOrder.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMemberOrder.java new file mode 100644 index 0000000..51d25a1 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMemberOrder.java @@ -0,0 +1,208 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMemberOrder implements Serializable { + private Integer id; + + private String merchantcode; + + private String merchantname; + + private String storeid; + + private String storename; + + private String ordernumber; + + private String membercode; + + private String nickname; + + private Date createdt; + + private String ordertype; + + private String orderfee; + + private String orderstatus; + + private String rechargetype; + + private String staffcode; + + private String staffname; + + private String leshuatransno; + + private String wechattransno; + + private String alipaytransno; + + private String remark; + + private String channelno; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public String getStoreid() { + return storeid; + } + + public void setStoreid(String storeid) { + this.storeid = storeid == null ? null : storeid.trim(); + } + + public String getStorename() { + return storename; + } + + public void setStorename(String storename) { + this.storename = storename == null ? null : storename.trim(); + } + + public String getOrdernumber() { + return ordernumber; + } + + public void setOrdernumber(String ordernumber) { + this.ordernumber = ordernumber == null ? null : ordernumber.trim(); + } + + public String getMembercode() { + return membercode; + } + + public void setMembercode(String membercode) { + this.membercode = membercode == null ? null : membercode.trim(); + } + + public String getNickname() { + return nickname; + } + + public void setNickname(String nickname) { + this.nickname = nickname == null ? null : nickname.trim(); + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public String getOrdertype() { + return ordertype; + } + + public void setOrdertype(String ordertype) { + this.ordertype = ordertype == null ? null : ordertype.trim(); + } + + public String getOrderfee() { + return orderfee; + } + + public void setOrderfee(String orderfee) { + this.orderfee = orderfee == null ? null : orderfee.trim(); + } + + public String getOrderstatus() { + return orderstatus; + } + + public void setOrderstatus(String orderstatus) { + this.orderstatus = orderstatus == null ? null : orderstatus.trim(); + } + + public String getRechargetype() { + return rechargetype; + } + + public void setRechargetype(String rechargetype) { + this.rechargetype = rechargetype == null ? null : rechargetype.trim(); + } + + public String getStaffcode() { + return staffcode; + } + + public void setStaffcode(String staffcode) { + this.staffcode = staffcode == null ? null : staffcode.trim(); + } + + public String getStaffname() { + return staffname; + } + + public void setStaffname(String staffname) { + this.staffname = staffname == null ? null : staffname.trim(); + } + + public String getLeshuatransno() { + return leshuatransno; + } + + public void setLeshuatransno(String leshuatransno) { + this.leshuatransno = leshuatransno == null ? null : leshuatransno.trim(); + } + + public String getWechattransno() { + return wechattransno; + } + + public void setWechattransno(String wechattransno) { + this.wechattransno = wechattransno == null ? null : wechattransno.trim(); + } + + public String getAlipaytransno() { + return alipaytransno; + } + + public void setAlipaytransno(String alipaytransno) { + this.alipaytransno = alipaytransno == null ? null : alipaytransno.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public String getChannelno() { + return channelno; + } + + public void setChannelno(String channelno) { + this.channelno = channelno == null ? null : channelno.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMemberSetting.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMemberSetting.java new file mode 100644 index 0000000..e5da047 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMemberSetting.java @@ -0,0 +1,118 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMemberSetting implements Serializable { + private Integer id; + + private String merchantcode; + + private String merchantname; + + private String storeid; + + private String storename; + + private String servicephone; + + private String cardnum; + + private String cardcontent; + + private Date createdt; + + private Date paydt; + + private String staffname; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public String getStoreid() { + return storeid; + } + + public void setStoreid(String storeid) { + this.storeid = storeid == null ? null : storeid.trim(); + } + + public String getStorename() { + return storename; + } + + public void setStorename(String storename) { + this.storename = storename == null ? null : storename.trim(); + } + + public String getServicephone() { + return servicephone; + } + + public void setServicephone(String servicephone) { + this.servicephone = servicephone == null ? null : servicephone.trim(); + } + + public String getCardnum() { + return cardnum; + } + + public void setCardnum(String cardnum) { + this.cardnum = cardnum == null ? null : cardnum.trim(); + } + + public String getCardcontent() { + return cardcontent; + } + + public void setCardcontent(String cardcontent) { + this.cardcontent = cardcontent == null ? null : cardcontent.trim(); + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public Date getPaydt() { + return paydt; + } + + public void setPaydt(Date paydt) { + this.paydt = paydt; + } + + public String getStaffname() { + return staffname; + } + + public void setStaffname(String staffname) { + this.staffname = staffname == null ? null : staffname.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMemberTransStatistics.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMemberTransStatistics.java new file mode 100644 index 0000000..14cdea7 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMemberTransStatistics.java @@ -0,0 +1,119 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussMemberTransStatistics implements Serializable { + private Integer id; + + private Integer userid; + + private Date startdate; + + private Date enddate; + + private String type; + + private BigDecimal rechargeamount; + + private BigDecimal consumeamount; + + private BigDecimal giveamount; + + private String remark; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public Date getStartdate() { + return startdate; + } + + public void setStartdate(Date startdate) { + this.startdate = startdate; + } + + public Date getEnddate() { + return enddate; + } + + public void setEnddate(Date enddate) { + this.enddate = enddate; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public BigDecimal getRechargeamount() { + return rechargeamount; + } + + public void setRechargeamount(BigDecimal rechargeamount) { + this.rechargeamount = rechargeamount; + } + + public BigDecimal getConsumeamount() { + return consumeamount; + } + + public void setConsumeamount(BigDecimal consumeamount) { + this.consumeamount = consumeamount; + } + + public BigDecimal getGiveamount() { + return giveamount; + } + + public void setGiveamount(BigDecimal giveamount) { + this.giveamount = giveamount; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMenuInfo.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMenuInfo.java new file mode 100644 index 0000000..add1b5b --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMenuInfo.java @@ -0,0 +1,127 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussMenuInfo implements Serializable { + private Long id; + + private String name; + + private Integer menutype; + + private Long parentid; + + private Integer menuorder; + + private Boolean visible; + + private String creator; + + private String version; + + private String description; + + private Integer seq; + + private Long pid; + + private Integer sort; + + private static final long serialVersionUID = 1L; + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public Integer getMenutype() { + return menutype; + } + + public void setMenutype(Integer menutype) { + this.menutype = menutype; + } + + public Long getParentid() { + return parentid; + } + + public void setParentid(Long parentid) { + this.parentid = parentid; + } + + public Integer getMenuorder() { + return menuorder; + } + + public void setMenuorder(Integer menuorder) { + this.menuorder = menuorder; + } + + public Boolean getVisible() { + return visible; + } + + public void setVisible(Boolean visible) { + this.visible = visible; + } + + public String getCreator() { + return creator; + } + + public void setCreator(String creator) { + this.creator = creator == null ? null : creator.trim(); + } + + public String getVersion() { + return version; + } + + public void setVersion(String version) { + this.version = version == null ? null : version.trim(); + } + + public String getDescription() { + return description; + } + + public void setDescription(String description) { + this.description = description == null ? null : description.trim(); + } + + public Integer getSeq() { + return seq; + } + + public void setSeq(Integer seq) { + this.seq = seq; + } + + public Long getPid() { + return pid; + } + + public void setPid(Long pid) { + this.pid = pid; + } + + public Integer getSort() { + return sort; + } + + public void setSort(Integer sort) { + this.sort = sort; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMenuInfoWithBLOBs.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMenuInfoWithBLOBs.java new file mode 100644 index 0000000..2a61ad3 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMenuInfoWithBLOBs.java @@ -0,0 +1,27 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussMenuInfoWithBLOBs extends TbPlussMenuInfo implements Serializable { + private String link; + + private String iconurl; + + private static final long serialVersionUID = 1L; + + public String getLink() { + return link; + } + + public void setLink(String link) { + this.link = link == null ? null : link.trim(); + } + + public String getIconurl() { + return iconurl; + } + + public void setIconurl(String iconurl) { + this.iconurl = iconurl == null ? null : iconurl.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMercDeviceRefundImage.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMercDeviceRefundImage.java new file mode 100644 index 0000000..87e470b --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMercDeviceRefundImage.java @@ -0,0 +1,68 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMercDeviceRefundImage implements Serializable { + private Integer id; + + private Integer userid; + + private String picurl; + + private Integer detailid; + + private String orderno; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getPicurl() { + return picurl; + } + + public void setPicurl(String picurl) { + this.picurl = picurl == null ? null : picurl.trim(); + } + + public Integer getDetailid() { + return detailid; + } + + public void setDetailid(Integer detailid) { + this.detailid = detailid; + } + + public String getOrderno() { + return orderno; + } + + public void setOrderno(String orderno) { + this.orderno = orderno == null ? null : orderno.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMercMemberSet.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMercMemberSet.java new file mode 100644 index 0000000..d8b963d --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMercMemberSet.java @@ -0,0 +1,68 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMercMemberSet implements Serializable { + private Integer id; + + private Integer userid; + + private String status; + + private String scope; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public String getScope() { + return scope; + } + + public void setScope(String scope) { + this.scope = scope == null ? null : scope.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMercOrderDetail.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMercOrderDetail.java new file mode 100644 index 0000000..b2fe809 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMercOrderDetail.java @@ -0,0 +1,249 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussMercOrderDetail implements Serializable { + private Integer id; + + private Integer shoptrolleyid; + + private String orderno; + + private String code; + + private String name; + + private String desc; + + private BigDecimal price; + + private String devicelogo; + + private String type; + + private Integer num; + + private Integer userid; + + private String logistno; + + private String status; + + private String refundreason; + + private String rejectremark; + + private String refundtype; + + private String expressno; + + private String refundexpressno; + + private BigDecimal refundamt; + + private String refundno; + + private Date refundtime; + + private String refundremark; + + private BigDecimal postage; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getShoptrolleyid() { + return shoptrolleyid; + } + + public void setShoptrolleyid(Integer shoptrolleyid) { + this.shoptrolleyid = shoptrolleyid; + } + + public String getOrderno() { + return orderno; + } + + public void setOrderno(String orderno) { + this.orderno = orderno == null ? null : orderno.trim(); + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc == null ? null : desc.trim(); + } + + public BigDecimal getPrice() { + return price; + } + + public void setPrice(BigDecimal price) { + this.price = price; + } + + public String getDevicelogo() { + return devicelogo; + } + + public void setDevicelogo(String devicelogo) { + this.devicelogo = devicelogo == null ? null : devicelogo.trim(); + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public Integer getNum() { + return num; + } + + public void setNum(Integer num) { + this.num = num; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getLogistno() { + return logistno; + } + + public void setLogistno(String logistno) { + this.logistno = logistno == null ? null : logistno.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public String getRefundreason() { + return refundreason; + } + + public void setRefundreason(String refundreason) { + this.refundreason = refundreason == null ? null : refundreason.trim(); + } + + public String getRejectremark() { + return rejectremark; + } + + public void setRejectremark(String rejectremark) { + this.rejectremark = rejectremark == null ? null : rejectremark.trim(); + } + + public String getRefundtype() { + return refundtype; + } + + public void setRefundtype(String refundtype) { + this.refundtype = refundtype == null ? null : refundtype.trim(); + } + + public String getExpressno() { + return expressno; + } + + public void setExpressno(String expressno) { + this.expressno = expressno == null ? null : expressno.trim(); + } + + public String getRefundexpressno() { + return refundexpressno; + } + + public void setRefundexpressno(String refundexpressno) { + this.refundexpressno = refundexpressno == null ? null : refundexpressno.trim(); + } + + public BigDecimal getRefundamt() { + return refundamt; + } + + public void setRefundamt(BigDecimal refundamt) { + this.refundamt = refundamt; + } + + public String getRefundno() { + return refundno; + } + + public void setRefundno(String refundno) { + this.refundno = refundno == null ? null : refundno.trim(); + } + + public Date getRefundtime() { + return refundtime; + } + + public void setRefundtime(Date refundtime) { + this.refundtime = refundtime; + } + + public String getRefundremark() { + return refundremark; + } + + public void setRefundremark(String refundremark) { + this.refundremark = refundremark == null ? null : refundremark.trim(); + } + + public BigDecimal getPostage() { + return postage; + } + + public void setPostage(BigDecimal postage) { + this.postage = postage; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMercOrderExpress.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMercOrderExpress.java new file mode 100644 index 0000000..f2e1b3f --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMercOrderExpress.java @@ -0,0 +1,88 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMercOrderExpress implements Serializable { + private Integer id; + + private String logistno; + + private String expressno; + + private String type; + + private String status; + + private Date createtime; + + private Date updatetime; + + private String orderno; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getLogistno() { + return logistno; + } + + public void setLogistno(String logistno) { + this.logistno = logistno == null ? null : logistno.trim(); + } + + public String getExpressno() { + return expressno; + } + + public void setExpressno(String expressno) { + this.expressno = expressno == null ? null : expressno.trim(); + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getOrderno() { + return orderno; + } + + public void setOrderno(String orderno) { + this.orderno = orderno == null ? null : orderno.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMercOrderExpressDetail.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMercOrderExpressDetail.java new file mode 100644 index 0000000..b5ddc15 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMercOrderExpressDetail.java @@ -0,0 +1,209 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussMercOrderExpressDetail implements Serializable { + private Integer id; + + private String orderno; + + private String logisticprovider; + + private String expressno; + + private String logistno; + + private String city; + + private String district; + + private Date accepttime; + + private String remark; + + private String empcode; + + private String empname; + + private String info; + + private BigDecimal weight; + + private String contactinfo; + + private String questioncause; + + private String deliveryname; + + private String orgname; + + private String orgcode; + + private String orgphone; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getOrderno() { + return orderno; + } + + public void setOrderno(String orderno) { + this.orderno = orderno == null ? null : orderno.trim(); + } + + public String getLogisticprovider() { + return logisticprovider; + } + + public void setLogisticprovider(String logisticprovider) { + this.logisticprovider = logisticprovider == null ? null : logisticprovider.trim(); + } + + public String getExpressno() { + return expressno; + } + + public void setExpressno(String expressno) { + this.expressno = expressno == null ? null : expressno.trim(); + } + + public String getLogistno() { + return logistno; + } + + public void setLogistno(String logistno) { + this.logistno = logistno == null ? null : logistno.trim(); + } + + public String getCity() { + return city; + } + + public void setCity(String city) { + this.city = city == null ? null : city.trim(); + } + + public String getDistrict() { + return district; + } + + public void setDistrict(String district) { + this.district = district == null ? null : district.trim(); + } + + public Date getAccepttime() { + return accepttime; + } + + public void setAccepttime(Date accepttime) { + this.accepttime = accepttime; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public String getEmpcode() { + return empcode; + } + + public void setEmpcode(String empcode) { + this.empcode = empcode == null ? null : empcode.trim(); + } + + public String getEmpname() { + return empname; + } + + public void setEmpname(String empname) { + this.empname = empname == null ? null : empname.trim(); + } + + public String getInfo() { + return info; + } + + public void setInfo(String info) { + this.info = info == null ? null : info.trim(); + } + + public BigDecimal getWeight() { + return weight; + } + + public void setWeight(BigDecimal weight) { + this.weight = weight; + } + + public String getContactinfo() { + return contactinfo; + } + + public void setContactinfo(String contactinfo) { + this.contactinfo = contactinfo == null ? null : contactinfo.trim(); + } + + public String getQuestioncause() { + return questioncause; + } + + public void setQuestioncause(String questioncause) { + this.questioncause = questioncause == null ? null : questioncause.trim(); + } + + public String getDeliveryname() { + return deliveryname; + } + + public void setDeliveryname(String deliveryname) { + this.deliveryname = deliveryname == null ? null : deliveryname.trim(); + } + + public String getOrgname() { + return orgname; + } + + public void setOrgname(String orgname) { + this.orgname = orgname == null ? null : orgname.trim(); + } + + public String getOrgcode() { + return orgcode; + } + + public void setOrgcode(String orgcode) { + this.orgcode = orgcode == null ? null : orgcode.trim(); + } + + public String getOrgphone() { + return orgphone; + } + + public void setOrgphone(String orgphone) { + this.orgphone = orgphone == null ? null : orgphone.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMercOrderNew.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMercOrderNew.java new file mode 100644 index 0000000..23f57a5 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMercOrderNew.java @@ -0,0 +1,329 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussMercOrderNew implements Serializable { + private Integer id; + + private String orderno; + + private Integer userid; + + private String transno; + + private String thirdtransno; + + private String receiver; + + private String phone; + + private String province; + + private String city; + + private String district; + + private String address; + + private String remark; + + private String status; + + private Date createtime; + + private Integer creator; + + private Date updatetime; + + private Integer updater; + + private String paytype; + + private Date transdt; + + private BigDecimal orderamt; + + private BigDecimal discountamt; + + private BigDecimal actualamt; + + private BigDecimal postage; + + private String areaname; + + private String merchantcode; + + private String merchantname; + + private Integer channel; + + private String paydata; + + private String payuserid; + + private String refundDesc; + + private String refundImg; + + private Date refundTime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getOrderno() { + return orderno; + } + + public void setOrderno(String orderno) { + this.orderno = orderno == null ? null : orderno.trim(); + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getTransno() { + return transno; + } + + public void setTransno(String transno) { + this.transno = transno == null ? null : transno.trim(); + } + + public String getThirdtransno() { + return thirdtransno; + } + + public void setThirdtransno(String thirdtransno) { + this.thirdtransno = thirdtransno == null ? null : thirdtransno.trim(); + } + + public String getReceiver() { + return receiver; + } + + public void setReceiver(String receiver) { + this.receiver = receiver == null ? null : receiver.trim(); + } + + public String getPhone() { + return phone; + } + + public void setPhone(String phone) { + this.phone = phone == null ? null : phone.trim(); + } + + public String getProvince() { + return province; + } + + public void setProvince(String province) { + this.province = province == null ? null : province.trim(); + } + + public String getCity() { + return city; + } + + public void setCity(String city) { + this.city = city == null ? null : city.trim(); + } + + public String getDistrict() { + return district; + } + + public void setDistrict(String district) { + this.district = district == null ? null : district.trim(); + } + + public String getAddress() { + return address; + } + + public void setAddress(String address) { + this.address = address == null ? null : address.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Integer getCreator() { + return creator; + } + + public void setCreator(Integer creator) { + this.creator = creator; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public Integer getUpdater() { + return updater; + } + + public void setUpdater(Integer updater) { + this.updater = updater; + } + + public String getPaytype() { + return paytype; + } + + public void setPaytype(String paytype) { + this.paytype = paytype == null ? null : paytype.trim(); + } + + public Date getTransdt() { + return transdt; + } + + public void setTransdt(Date transdt) { + this.transdt = transdt; + } + + public BigDecimal getOrderamt() { + return orderamt; + } + + public void setOrderamt(BigDecimal orderamt) { + this.orderamt = orderamt; + } + + public BigDecimal getDiscountamt() { + return discountamt; + } + + public void setDiscountamt(BigDecimal discountamt) { + this.discountamt = discountamt; + } + + public BigDecimal getActualamt() { + return actualamt; + } + + public void setActualamt(BigDecimal actualamt) { + this.actualamt = actualamt; + } + + public BigDecimal getPostage() { + return postage; + } + + public void setPostage(BigDecimal postage) { + this.postage = postage; + } + + public String getAreaname() { + return areaname; + } + + public void setAreaname(String areaname) { + this.areaname = areaname == null ? null : areaname.trim(); + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public Integer getChannel() { + return channel; + } + + public void setChannel(Integer channel) { + this.channel = channel; + } + + public String getPaydata() { + return paydata; + } + + public void setPaydata(String paydata) { + this.paydata = paydata == null ? null : paydata.trim(); + } + + public String getPayuserid() { + return payuserid; + } + + public void setPayuserid(String payuserid) { + this.payuserid = payuserid == null ? null : payuserid.trim(); + } + + public String getRefundDesc() { + return refundDesc; + } + + public void setRefundDesc(String refundDesc) { + this.refundDesc = refundDesc == null ? null : refundDesc.trim(); + } + + public String getRefundImg() { + return refundImg; + } + + public void setRefundImg(String refundImg) { + this.refundImg = refundImg == null ? null : refundImg.trim(); + } + + public Date getRefundTime() { + return refundTime; + } + + public void setRefundTime(Date refundTime) { + this.refundTime = refundTime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMercOrderToken.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMercOrderToken.java new file mode 100644 index 0000000..42df396 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMercOrderToken.java @@ -0,0 +1,199 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussMercOrderToken implements Serializable { + private Integer id; + + private String token; + + private String merchantname; + + private String merchantcode; + + private Integer userid; + + private BigDecimal orderamt; + + private String ordernumber; + + private String type; + + private String snno; + + private Date createtime; + + private Date expiretime; + + private String mercorderno; + + private String mercnotifyurl; + + private String mercrefundurl; + + private String subject; + + private Integer channel; + + private String paytypecode; + + private String paytypename; + + private String alias; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getToken() { + return token; + } + + public void setToken(String token) { + this.token = token == null ? null : token.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public BigDecimal getOrderamt() { + return orderamt; + } + + public void setOrderamt(BigDecimal orderamt) { + this.orderamt = orderamt; + } + + public String getOrdernumber() { + return ordernumber; + } + + public void setOrdernumber(String ordernumber) { + this.ordernumber = ordernumber == null ? null : ordernumber.trim(); + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public String getSnno() { + return snno; + } + + public void setSnno(String snno) { + this.snno = snno == null ? null : snno.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getExpiretime() { + return expiretime; + } + + public void setExpiretime(Date expiretime) { + this.expiretime = expiretime; + } + + public String getMercorderno() { + return mercorderno; + } + + public void setMercorderno(String mercorderno) { + this.mercorderno = mercorderno == null ? null : mercorderno.trim(); + } + + public String getMercnotifyurl() { + return mercnotifyurl; + } + + public void setMercnotifyurl(String mercnotifyurl) { + this.mercnotifyurl = mercnotifyurl == null ? null : mercnotifyurl.trim(); + } + + public String getMercrefundurl() { + return mercrefundurl; + } + + public void setMercrefundurl(String mercrefundurl) { + this.mercrefundurl = mercrefundurl == null ? null : mercrefundurl.trim(); + } + + public String getSubject() { + return subject; + } + + public void setSubject(String subject) { + this.subject = subject == null ? null : subject.trim(); + } + + public Integer getChannel() { + return channel; + } + + public void setChannel(Integer channel) { + this.channel = channel; + } + + public String getPaytypecode() { + return paytypecode; + } + + public void setPaytypecode(String paytypecode) { + this.paytypecode = paytypecode == null ? null : paytypecode.trim(); + } + + public String getPaytypename() { + return paytypename; + } + + public void setPaytypename(String paytypename) { + this.paytypename = paytypename == null ? null : paytypename.trim(); + } + + public String getAlias() { + return alias; + } + + public void setAlias(String alias) { + this.alias = alias == null ? null : alias.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMercShopTrolley.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMercShopTrolley.java new file mode 100644 index 0000000..60aa03e --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMercShopTrolley.java @@ -0,0 +1,108 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMercShopTrolley implements Serializable { + private Integer id; + + private String code; + + private String name; + + private String devicelogo; + + private String type; + + private Integer num; + + private Integer userid; + + private Date createtime; + + private Date updatetime; + + private String status; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getDevicelogo() { + return devicelogo; + } + + public void setDevicelogo(String devicelogo) { + this.devicelogo = devicelogo == null ? null : devicelogo.trim(); + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public Integer getNum() { + return num; + } + + public void setNum(Integer num) { + this.num = num; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantAddress.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantAddress.java new file mode 100644 index 0000000..641c439 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantAddress.java @@ -0,0 +1,98 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantAddress implements Serializable { + private Integer id; + + private String userid; + + private String merchantcode; + + private String provinces; + + private String address; + + private String linkphone; + + private String linkname; + + private String isdefault; + + private Date createdt; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getUserid() { + return userid; + } + + public void setUserid(String userid) { + this.userid = userid == null ? null : userid.trim(); + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getProvinces() { + return provinces; + } + + public void setProvinces(String provinces) { + this.provinces = provinces == null ? null : provinces.trim(); + } + + public String getAddress() { + return address; + } + + public void setAddress(String address) { + this.address = address == null ? null : address.trim(); + } + + public String getLinkphone() { + return linkphone; + } + + public void setLinkphone(String linkphone) { + this.linkphone = linkphone == null ? null : linkphone.trim(); + } + + public String getLinkname() { + return linkname; + } + + public void setLinkname(String linkname) { + this.linkname = linkname == null ? null : linkname.trim(); + } + + public String getIsdefault() { + return isdefault; + } + + public void setIsdefault(String isdefault) { + this.isdefault = isdefault == null ? null : isdefault.trim(); + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantAuditRecord.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantAuditRecord.java new file mode 100644 index 0000000..9f46ba9 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantAuditRecord.java @@ -0,0 +1,108 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantAuditRecord implements Serializable { + private Integer id; + + private String merchantcode; + + private String merchantid; + + private String status; + + private String thirdstatus; + + private String remark; + + private Date createtime; + + private Date updatetime; + + private Integer channel; + + private String applicationid; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantid() { + return merchantid; + } + + public void setMerchantid(String merchantid) { + this.merchantid = merchantid == null ? null : merchantid.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public String getThirdstatus() { + return thirdstatus; + } + + public void setThirdstatus(String thirdstatus) { + this.thirdstatus = thirdstatus == null ? null : thirdstatus.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public Integer getChannel() { + return channel; + } + + public void setChannel(Integer channel) { + this.channel = channel; + } + + public String getApplicationid() { + return applicationid; + } + + public void setApplicationid(String applicationid) { + this.applicationid = applicationid == null ? null : applicationid.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantBackLkl.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantBackLkl.java new file mode 100644 index 0000000..cdc450d --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantBackLkl.java @@ -0,0 +1,148 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantBackLkl implements Serializable { + private Integer id; + + private String merchantCode; + + private String merchantId; + + private String channel; + + private String userNo; + + private String customerNo; + + private String externalCustomerNo; + + private String termNos; + + private String agencyNo; + + private String activeNo; + + private String contractId; + + private String coreTermIds; + + private Date createTime; + + private Date updateTime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMerchantCode() { + return merchantCode; + } + + public void setMerchantCode(String merchantCode) { + this.merchantCode = merchantCode == null ? null : merchantCode.trim(); + } + + public String getMerchantId() { + return merchantId; + } + + public void setMerchantId(String merchantId) { + this.merchantId = merchantId == null ? null : merchantId.trim(); + } + + public String getChannel() { + return channel; + } + + public void setChannel(String channel) { + this.channel = channel == null ? null : channel.trim(); + } + + public String getUserNo() { + return userNo; + } + + public void setUserNo(String userNo) { + this.userNo = userNo == null ? null : userNo.trim(); + } + + public String getCustomerNo() { + return customerNo; + } + + public void setCustomerNo(String customerNo) { + this.customerNo = customerNo == null ? null : customerNo.trim(); + } + + public String getExternalCustomerNo() { + return externalCustomerNo; + } + + public void setExternalCustomerNo(String externalCustomerNo) { + this.externalCustomerNo = externalCustomerNo == null ? null : externalCustomerNo.trim(); + } + + public String getTermNos() { + return termNos; + } + + public void setTermNos(String termNos) { + this.termNos = termNos == null ? null : termNos.trim(); + } + + public String getAgencyNo() { + return agencyNo; + } + + public void setAgencyNo(String agencyNo) { + this.agencyNo = agencyNo == null ? null : agencyNo.trim(); + } + + public String getActiveNo() { + return activeNo; + } + + public void setActiveNo(String activeNo) { + this.activeNo = activeNo == null ? null : activeNo.trim(); + } + + public String getContractId() { + return contractId; + } + + public void setContractId(String contractId) { + this.contractId = contractId == null ? null : contractId.trim(); + } + + public String getCoreTermIds() { + return coreTermIds; + } + + public void setCoreTermIds(String coreTermIds) { + this.coreTermIds = coreTermIds == null ? null : coreTermIds.trim(); + } + + public Date getCreateTime() { + return createTime; + } + + public void setCreateTime(Date createTime) { + this.createTime = createTime; + } + + public Date getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(Date updateTime) { + this.updateTime = updateTime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantBankCard.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantBankCard.java new file mode 100644 index 0000000..d9b92e4 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantBankCard.java @@ -0,0 +1,328 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantBankCard implements Serializable { + private Integer id; + + private String merchantcode; + + private String storeid; + + private String bankcardno; + + private String bankaddressno; + + private String bankcertname; + + private String bankname; + + private String branchname; + + private String accounttype; + + private String contactline; + + private String branchprovince; + + private String branchcity; + + private String brancharea; + + private String certtype; + + private String certno; + + private String certstarttime; + + private String certendtime; + + private String cardholderaddress; + + private String orderno; + + private String merchantid; + + private String registerstatus; + + private String failreason; + + private String accountno; + + private String wechatchannellist; + + private String phone; + + private Date createdt; + + private Date updatedt; + + private String aisleswitch; + + private String certfullphoto; + + private String certbackphoto; + + private String bankcardfrontpic; + + private String userid; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getStoreid() { + return storeid; + } + + public void setStoreid(String storeid) { + this.storeid = storeid == null ? null : storeid.trim(); + } + + public String getBankcardno() { + return bankcardno; + } + + public void setBankcardno(String bankcardno) { + this.bankcardno = bankcardno == null ? null : bankcardno.trim(); + } + + public String getBankaddressno() { + return bankaddressno; + } + + public void setBankaddressno(String bankaddressno) { + this.bankaddressno = bankaddressno == null ? null : bankaddressno.trim(); + } + + public String getBankcertname() { + return bankcertname; + } + + public void setBankcertname(String bankcertname) { + this.bankcertname = bankcertname == null ? null : bankcertname.trim(); + } + + public String getBankname() { + return bankname; + } + + public void setBankname(String bankname) { + this.bankname = bankname == null ? null : bankname.trim(); + } + + public String getBranchname() { + return branchname; + } + + public void setBranchname(String branchname) { + this.branchname = branchname == null ? null : branchname.trim(); + } + + public String getAccounttype() { + return accounttype; + } + + public void setAccounttype(String accounttype) { + this.accounttype = accounttype == null ? null : accounttype.trim(); + } + + public String getContactline() { + return contactline; + } + + public void setContactline(String contactline) { + this.contactline = contactline == null ? null : contactline.trim(); + } + + public String getBranchprovince() { + return branchprovince; + } + + public void setBranchprovince(String branchprovince) { + this.branchprovince = branchprovince == null ? null : branchprovince.trim(); + } + + public String getBranchcity() { + return branchcity; + } + + public void setBranchcity(String branchcity) { + this.branchcity = branchcity == null ? null : branchcity.trim(); + } + + public String getBrancharea() { + return brancharea; + } + + public void setBrancharea(String brancharea) { + this.brancharea = brancharea == null ? null : brancharea.trim(); + } + + public String getCerttype() { + return certtype; + } + + public void setCerttype(String certtype) { + this.certtype = certtype == null ? null : certtype.trim(); + } + + public String getCertno() { + return certno; + } + + public void setCertno(String certno) { + this.certno = certno == null ? null : certno.trim(); + } + + public String getCertstarttime() { + return certstarttime; + } + + public void setCertstarttime(String certstarttime) { + this.certstarttime = certstarttime == null ? null : certstarttime.trim(); + } + + public String getCertendtime() { + return certendtime; + } + + public void setCertendtime(String certendtime) { + this.certendtime = certendtime == null ? null : certendtime.trim(); + } + + public String getCardholderaddress() { + return cardholderaddress; + } + + public void setCardholderaddress(String cardholderaddress) { + this.cardholderaddress = cardholderaddress == null ? null : cardholderaddress.trim(); + } + + public String getOrderno() { + return orderno; + } + + public void setOrderno(String orderno) { + this.orderno = orderno == null ? null : orderno.trim(); + } + + public String getMerchantid() { + return merchantid; + } + + public void setMerchantid(String merchantid) { + this.merchantid = merchantid == null ? null : merchantid.trim(); + } + + public String getRegisterstatus() { + return registerstatus; + } + + public void setRegisterstatus(String registerstatus) { + this.registerstatus = registerstatus == null ? null : registerstatus.trim(); + } + + public String getFailreason() { + return failreason; + } + + public void setFailreason(String failreason) { + this.failreason = failreason == null ? null : failreason.trim(); + } + + public String getAccountno() { + return accountno; + } + + public void setAccountno(String accountno) { + this.accountno = accountno == null ? null : accountno.trim(); + } + + public String getWechatchannellist() { + return wechatchannellist; + } + + public void setWechatchannellist(String wechatchannellist) { + this.wechatchannellist = wechatchannellist == null ? null : wechatchannellist.trim(); + } + + public String getPhone() { + return phone; + } + + public void setPhone(String phone) { + this.phone = phone == null ? null : phone.trim(); + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public Date getUpdatedt() { + return updatedt; + } + + public void setUpdatedt(Date updatedt) { + this.updatedt = updatedt; + } + + public String getAisleswitch() { + return aisleswitch; + } + + public void setAisleswitch(String aisleswitch) { + this.aisleswitch = aisleswitch == null ? null : aisleswitch.trim(); + } + + public String getCertfullphoto() { + return certfullphoto; + } + + public void setCertfullphoto(String certfullphoto) { + this.certfullphoto = certfullphoto == null ? null : certfullphoto.trim(); + } + + public String getCertbackphoto() { + return certbackphoto; + } + + public void setCertbackphoto(String certbackphoto) { + this.certbackphoto = certbackphoto == null ? null : certbackphoto.trim(); + } + + public String getBankcardfrontpic() { + return bankcardfrontpic; + } + + public void setBankcardfrontpic(String bankcardfrontpic) { + this.bankcardfrontpic = bankcardfrontpic == null ? null : bankcardfrontpic.trim(); + } + + public String getUserid() { + return userid; + } + + public void setUserid(String userid) { + this.userid = userid == null ? null : userid.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantBaseInfo.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantBaseInfo.java new file mode 100644 index 0000000..4008377 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantBaseInfo.java @@ -0,0 +1,478 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantBaseInfo implements Serializable { + private Integer id; + + private String bindingcode; + + private Integer userid; + + private String aliaccount; + + private String merchantcode; + + private String merchantname; + + private String merchanttype; + + private String productdesc; + + private String alimcc; + + private String mcc; + + private String mccname; + + private String alias; + + private String contactmobile; + + private String contactname; + + private String addressno; + + private String province; + + private String city; + + private String district; + + private String address; + + private String email; + + private String principalmobile; + + private String principalcerttype; + + private String principalcertno; + + private String principalperson; + + private String bussauthname; + + private String bussauthnum; + + private String bussauthaddress; + + private String bussauthstarttime; + + private String bussauthendtime; + + private String certorgcode; + + private Date createdt; + + private Date updatedt; + + private String creator; + + private String buslictype; + + private String isvoice; + + private String allowbanklarge; + + private String wxcertstatus; + + private String ispushwxmessage; + + private String isunionpay; + + private String md5key; + + private String limitpay; + + private String subappid; + + private String appid; + + private Date firsttradetime; + + private Date lasttradetime; + + private Byte splitflag; + + private Byte validflag; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getBindingcode() { + return bindingcode; + } + + public void setBindingcode(String bindingcode) { + this.bindingcode = bindingcode == null ? null : bindingcode.trim(); + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getAliaccount() { + return aliaccount; + } + + public void setAliaccount(String aliaccount) { + this.aliaccount = aliaccount == null ? null : aliaccount.trim(); + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public String getMerchanttype() { + return merchanttype; + } + + public void setMerchanttype(String merchanttype) { + this.merchanttype = merchanttype == null ? null : merchanttype.trim(); + } + + public String getProductdesc() { + return productdesc; + } + + public void setProductdesc(String productdesc) { + this.productdesc = productdesc == null ? null : productdesc.trim(); + } + + public String getAlimcc() { + return alimcc; + } + + public void setAlimcc(String alimcc) { + this.alimcc = alimcc == null ? null : alimcc.trim(); + } + + public String getMcc() { + return mcc; + } + + public void setMcc(String mcc) { + this.mcc = mcc == null ? null : mcc.trim(); + } + + public String getMccname() { + return mccname; + } + + public void setMccname(String mccname) { + this.mccname = mccname == null ? null : mccname.trim(); + } + + public String getAlias() { + return alias; + } + + public void setAlias(String alias) { + this.alias = alias == null ? null : alias.trim(); + } + + public String getContactmobile() { + return contactmobile; + } + + public void setContactmobile(String contactmobile) { + this.contactmobile = contactmobile == null ? null : contactmobile.trim(); + } + + public String getContactname() { + return contactname; + } + + public void setContactname(String contactname) { + this.contactname = contactname == null ? null : contactname.trim(); + } + + public String getAddressno() { + return addressno; + } + + public void setAddressno(String addressno) { + this.addressno = addressno == null ? null : addressno.trim(); + } + + public String getProvince() { + return province; + } + + public void setProvince(String province) { + this.province = province == null ? null : province.trim(); + } + + public String getCity() { + return city; + } + + public void setCity(String city) { + this.city = city == null ? null : city.trim(); + } + + public String getDistrict() { + return district; + } + + public void setDistrict(String district) { + this.district = district == null ? null : district.trim(); + } + + public String getAddress() { + return address; + } + + public void setAddress(String address) { + this.address = address == null ? null : address.trim(); + } + + public String getEmail() { + return email; + } + + public void setEmail(String email) { + this.email = email == null ? null : email.trim(); + } + + public String getPrincipalmobile() { + return principalmobile; + } + + public void setPrincipalmobile(String principalmobile) { + this.principalmobile = principalmobile == null ? null : principalmobile.trim(); + } + + public String getPrincipalcerttype() { + return principalcerttype; + } + + public void setPrincipalcerttype(String principalcerttype) { + this.principalcerttype = principalcerttype == null ? null : principalcerttype.trim(); + } + + public String getPrincipalcertno() { + return principalcertno; + } + + public void setPrincipalcertno(String principalcertno) { + this.principalcertno = principalcertno == null ? null : principalcertno.trim(); + } + + public String getPrincipalperson() { + return principalperson; + } + + public void setPrincipalperson(String principalperson) { + this.principalperson = principalperson == null ? null : principalperson.trim(); + } + + public String getBussauthname() { + return bussauthname; + } + + public void setBussauthname(String bussauthname) { + this.bussauthname = bussauthname == null ? null : bussauthname.trim(); + } + + public String getBussauthnum() { + return bussauthnum; + } + + public void setBussauthnum(String bussauthnum) { + this.bussauthnum = bussauthnum == null ? null : bussauthnum.trim(); + } + + public String getBussauthaddress() { + return bussauthaddress; + } + + public void setBussauthaddress(String bussauthaddress) { + this.bussauthaddress = bussauthaddress == null ? null : bussauthaddress.trim(); + } + + public String getBussauthstarttime() { + return bussauthstarttime; + } + + public void setBussauthstarttime(String bussauthstarttime) { + this.bussauthstarttime = bussauthstarttime == null ? null : bussauthstarttime.trim(); + } + + public String getBussauthendtime() { + return bussauthendtime; + } + + public void setBussauthendtime(String bussauthendtime) { + this.bussauthendtime = bussauthendtime == null ? null : bussauthendtime.trim(); + } + + public String getCertorgcode() { + return certorgcode; + } + + public void setCertorgcode(String certorgcode) { + this.certorgcode = certorgcode == null ? null : certorgcode.trim(); + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public Date getUpdatedt() { + return updatedt; + } + + public void setUpdatedt(Date updatedt) { + this.updatedt = updatedt; + } + + public String getCreator() { + return creator; + } + + public void setCreator(String creator) { + this.creator = creator == null ? null : creator.trim(); + } + + public String getBuslictype() { + return buslictype; + } + + public void setBuslictype(String buslictype) { + this.buslictype = buslictype == null ? null : buslictype.trim(); + } + + public String getIsvoice() { + return isvoice; + } + + public void setIsvoice(String isvoice) { + this.isvoice = isvoice == null ? null : isvoice.trim(); + } + + public String getAllowbanklarge() { + return allowbanklarge; + } + + public void setAllowbanklarge(String allowbanklarge) { + this.allowbanklarge = allowbanklarge == null ? null : allowbanklarge.trim(); + } + + public String getWxcertstatus() { + return wxcertstatus; + } + + public void setWxcertstatus(String wxcertstatus) { + this.wxcertstatus = wxcertstatus == null ? null : wxcertstatus.trim(); + } + + public String getIspushwxmessage() { + return ispushwxmessage; + } + + public void setIspushwxmessage(String ispushwxmessage) { + this.ispushwxmessage = ispushwxmessage == null ? null : ispushwxmessage.trim(); + } + + public String getIsunionpay() { + return isunionpay; + } + + public void setIsunionpay(String isunionpay) { + this.isunionpay = isunionpay == null ? null : isunionpay.trim(); + } + + public String getMd5key() { + return md5key; + } + + public void setMd5key(String md5key) { + this.md5key = md5key == null ? null : md5key.trim(); + } + + public String getLimitpay() { + return limitpay; + } + + public void setLimitpay(String limitpay) { + this.limitpay = limitpay == null ? null : limitpay.trim(); + } + + public String getSubappid() { + return subappid; + } + + public void setSubappid(String subappid) { + this.subappid = subappid == null ? null : subappid.trim(); + } + + public String getAppid() { + return appid; + } + + public void setAppid(String appid) { + this.appid = appid == null ? null : appid.trim(); + } + + public Date getFirsttradetime() { + return firsttradetime; + } + + public void setFirsttradetime(Date firsttradetime) { + this.firsttradetime = firsttradetime; + } + + public Date getLasttradetime() { + return lasttradetime; + } + + public void setLasttradetime(Date lasttradetime) { + this.lasttradetime = lasttradetime; + } + + public Byte getSplitflag() { + return splitflag; + } + + public void setSplitflag(Byte splitflag) { + this.splitflag = splitflag; + } + + public Byte getValidflag() { + return validflag; + } + + public void setValidflag(Byte validflag) { + this.validflag = validflag; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantBillStatistics.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantBillStatistics.java new file mode 100644 index 0000000..653eac3 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantBillStatistics.java @@ -0,0 +1,129 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussMerchantBillStatistics implements Serializable { + private Integer id; + + private Integer userid; + + private Date startdate; + + private Date enddate; + + private Date laststartdate; + + private Date lastenddate; + + private Byte type; + + private BigDecimal amount; + + private Integer count; + + private String remark; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public Date getStartdate() { + return startdate; + } + + public void setStartdate(Date startdate) { + this.startdate = startdate; + } + + public Date getEnddate() { + return enddate; + } + + public void setEnddate(Date enddate) { + this.enddate = enddate; + } + + public Date getLaststartdate() { + return laststartdate; + } + + public void setLaststartdate(Date laststartdate) { + this.laststartdate = laststartdate; + } + + public Date getLastenddate() { + return lastenddate; + } + + public void setLastenddate(Date lastenddate) { + this.lastenddate = lastenddate; + } + + public Byte getType() { + return type; + } + + public void setType(Byte type) { + this.type = type; + } + + public BigDecimal getAmount() { + return amount; + } + + public void setAmount(BigDecimal amount) { + this.amount = amount; + } + + public Integer getCount() { + return count; + } + + public void setCount(Integer count) { + this.count = count; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantCashPayCode.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantCashPayCode.java new file mode 100644 index 0000000..958b23f --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantCashPayCode.java @@ -0,0 +1,58 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantCashPayCode implements Serializable { + private Integer id; + + private Integer cashplaceid; + + private String paycode; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getCashplaceid() { + return cashplaceid; + } + + public void setCashplaceid(Integer cashplaceid) { + this.cashplaceid = cashplaceid; + } + + public String getPaycode() { + return paycode; + } + + public void setPaycode(String paycode) { + this.paycode = paycode == null ? null : paycode.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantCashPlace.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantCashPlace.java new file mode 100644 index 0000000..6b6038d --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantCashPlace.java @@ -0,0 +1,108 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantCashPlace implements Serializable { + private Integer id; + + private String logo; + + private Integer userid; + + private String bindingcode; + + private String name; + + private String code; + + private String address; + + private String remark; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getLogo() { + return logo; + } + + public void setLogo(String logo) { + this.logo = logo == null ? null : logo.trim(); + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getBindingcode() { + return bindingcode; + } + + public void setBindingcode(String bindingcode) { + this.bindingcode = bindingcode == null ? null : bindingcode.trim(); + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public String getAddress() { + return address; + } + + public void setAddress(String address) { + this.address = address == null ? null : address.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantCashPlaceStaff.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantCashPlaceStaff.java new file mode 100644 index 0000000..edf87d2 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantCashPlaceStaff.java @@ -0,0 +1,78 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantCashPlaceStaff implements Serializable { + private Integer id; + + private Integer userid; + + private Integer cashplaceid; + + private String remark; + + private String status; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public Integer getCashplaceid() { + return cashplaceid; + } + + public void setCashplaceid(Integer cashplaceid) { + this.cashplaceid = cashplaceid; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantChannel.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantChannel.java new file mode 100644 index 0000000..2fb38dc --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantChannel.java @@ -0,0 +1,57 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussMerchantChannel implements Serializable { + private Integer id; + + private String channelname; + + private String channelcode; + + private String status; + + private String wxcertimg; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getChannelname() { + return channelname; + } + + public void setChannelname(String channelname) { + this.channelname = channelname == null ? null : channelname.trim(); + } + + public String getChannelcode() { + return channelcode; + } + + public void setChannelcode(String channelcode) { + this.channelcode = channelcode == null ? null : channelcode.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public String getWxcertimg() { + return wxcertimg; + } + + public void setWxcertimg(String wxcertimg) { + this.wxcertimg = wxcertimg == null ? null : wxcertimg.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantChannelFee.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantChannelFee.java new file mode 100644 index 0000000..97822f7 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantChannelFee.java @@ -0,0 +1,68 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantChannelFee implements Serializable { + private Integer id; + + private String merchantCode; + + private String channel; + + private String feeStr; + + private Date createTime; + + private Date updateTime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMerchantCode() { + return merchantCode; + } + + public void setMerchantCode(String merchantCode) { + this.merchantCode = merchantCode == null ? null : merchantCode.trim(); + } + + public String getChannel() { + return channel; + } + + public void setChannel(String channel) { + this.channel = channel == null ? null : channel.trim(); + } + + public String getFeeStr() { + return feeStr; + } + + public void setFeeStr(String feeStr) { + this.feeStr = feeStr == null ? null : feeStr.trim(); + } + + public Date getCreateTime() { + return createTime; + } + + public void setCreateTime(Date createTime) { + this.createTime = createTime; + } + + public Date getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(Date updateTime) { + this.updateTime = updateTime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantChannelImg.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantChannelImg.java new file mode 100644 index 0000000..15898f1 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantChannelImg.java @@ -0,0 +1,78 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantChannelImg implements Serializable { + private Integer id; + + private Integer merimgid; + + private Integer channeltype; + + private String channelimgurl; + + private Date createtime; + + private Date updatetime; + + private String srcurl; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getMerimgid() { + return merimgid; + } + + public void setMerimgid(Integer merimgid) { + this.merimgid = merimgid; + } + + public Integer getChanneltype() { + return channeltype; + } + + public void setChanneltype(Integer channeltype) { + this.channeltype = channeltype; + } + + public String getChannelimgurl() { + return channelimgurl; + } + + public void setChannelimgurl(String channelimgurl) { + this.channelimgurl = channelimgurl == null ? null : channelimgurl.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getSrcurl() { + return srcurl; + } + + public void setSrcurl(String srcurl) { + this.srcurl = srcurl == null ? null : srcurl.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantChannelImgBak.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantChannelImgBak.java new file mode 100644 index 0000000..49b5a29 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantChannelImgBak.java @@ -0,0 +1,78 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantChannelImgBak implements Serializable { + private Integer id; + + private Integer merimgid; + + private Integer channeltype; + + private String channelimgurl; + + private Date createtime; + + private Date updatetime; + + private String srcurl; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getMerimgid() { + return merimgid; + } + + public void setMerimgid(Integer merimgid) { + this.merimgid = merimgid; + } + + public Integer getChanneltype() { + return channeltype; + } + + public void setChanneltype(Integer channeltype) { + this.channeltype = channeltype; + } + + public String getChannelimgurl() { + return channelimgurl; + } + + public void setChannelimgurl(String channelimgurl) { + this.channelimgurl = channelimgurl == null ? null : channelimgurl.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getSrcurl() { + return srcurl; + } + + public void setSrcurl(String srcurl) { + this.srcurl = srcurl == null ? null : srcurl.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantChannelStatus.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantChannelStatus.java new file mode 100644 index 0000000..147b61a --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantChannelStatus.java @@ -0,0 +1,248 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantChannelStatus implements Serializable { + private Integer id; + + private Integer channel; + + private String merchantcode; + + private String merchantid; + + private String settlementtype; + + private String status; + + private String thirdstatus; + + private String remark; + + private Date createtime; + + private Date updatetime; + + private String applicationid; + + private String callbackstatus; + + private Integer valid; + + private String authorizationstatus; + + private String mercname; + + private String virchannelflag; + + private String virstatusflag; + + private String srcmerchantno; + + private String interfaceversion; + + private String aliauthorizationstatus; + + private String wxcerturl; + + private String alicerturl; + + private Date auditsuccesstime; + + private String extra; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getChannel() { + return channel; + } + + public void setChannel(Integer channel) { + this.channel = channel; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantid() { + return merchantid; + } + + public void setMerchantid(String merchantid) { + this.merchantid = merchantid == null ? null : merchantid.trim(); + } + + public String getSettlementtype() { + return settlementtype; + } + + public void setSettlementtype(String settlementtype) { + this.settlementtype = settlementtype == null ? null : settlementtype.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public String getThirdstatus() { + return thirdstatus; + } + + public void setThirdstatus(String thirdstatus) { + this.thirdstatus = thirdstatus == null ? null : thirdstatus.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getApplicationid() { + return applicationid; + } + + public void setApplicationid(String applicationid) { + this.applicationid = applicationid == null ? null : applicationid.trim(); + } + + public String getCallbackstatus() { + return callbackstatus; + } + + public void setCallbackstatus(String callbackstatus) { + this.callbackstatus = callbackstatus == null ? null : callbackstatus.trim(); + } + + public Integer getValid() { + return valid; + } + + public void setValid(Integer valid) { + this.valid = valid; + } + + public String getAuthorizationstatus() { + return authorizationstatus; + } + + public void setAuthorizationstatus(String authorizationstatus) { + this.authorizationstatus = authorizationstatus == null ? null : authorizationstatus.trim(); + } + + public String getMercname() { + return mercname; + } + + public void setMercname(String mercname) { + this.mercname = mercname == null ? null : mercname.trim(); + } + + public String getVirchannelflag() { + return virchannelflag; + } + + public void setVirchannelflag(String virchannelflag) { + this.virchannelflag = virchannelflag == null ? null : virchannelflag.trim(); + } + + public String getVirstatusflag() { + return virstatusflag; + } + + public void setVirstatusflag(String virstatusflag) { + this.virstatusflag = virstatusflag == null ? null : virstatusflag.trim(); + } + + public String getSrcmerchantno() { + return srcmerchantno; + } + + public void setSrcmerchantno(String srcmerchantno) { + this.srcmerchantno = srcmerchantno == null ? null : srcmerchantno.trim(); + } + + public String getInterfaceversion() { + return interfaceversion; + } + + public void setInterfaceversion(String interfaceversion) { + this.interfaceversion = interfaceversion == null ? null : interfaceversion.trim(); + } + + public String getAliauthorizationstatus() { + return aliauthorizationstatus; + } + + public void setAliauthorizationstatus(String aliauthorizationstatus) { + this.aliauthorizationstatus = aliauthorizationstatus == null ? null : aliauthorizationstatus.trim(); + } + + public String getWxcerturl() { + return wxcerturl; + } + + public void setWxcerturl(String wxcerturl) { + this.wxcerturl = wxcerturl == null ? null : wxcerturl.trim(); + } + + public String getAlicerturl() { + return alicerturl; + } + + public void setAlicerturl(String alicerturl) { + this.alicerturl = alicerturl == null ? null : alicerturl.trim(); + } + + public Date getAuditsuccesstime() { + return auditsuccesstime; + } + + public void setAuditsuccesstime(Date auditsuccesstime) { + this.auditsuccesstime = auditsuccesstime; + } + + public String getExtra() { + return extra; + } + + public void setExtra(String extra) { + this.extra = extra == null ? null : extra.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantComplaintImage.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantComplaintImage.java new file mode 100644 index 0000000..fd35a45 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantComplaintImage.java @@ -0,0 +1,48 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantComplaintImage implements Serializable { + private Integer id; + + private Integer complaintid; + + private String picurl; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getComplaintid() { + return complaintid; + } + + public void setComplaintid(Integer complaintid) { + this.complaintid = complaintid; + } + + public String getPicurl() { + return picurl; + } + + public void setPicurl(String picurl) { + this.picurl = picurl == null ? null : picurl.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantComplaintRecord.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantComplaintRecord.java new file mode 100644 index 0000000..ff4c0f2 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantComplaintRecord.java @@ -0,0 +1,109 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussMerchantComplaintRecord implements Serializable { + private Integer id; + + private String merchantcode; + + private String merchantname; + + private BigDecimal orderamt; + + private Date paytime; + + private String complaintphone; + + private String remark; + + private String ordernumber; + + private Date createtime; + + private String status; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public BigDecimal getOrderamt() { + return orderamt; + } + + public void setOrderamt(BigDecimal orderamt) { + this.orderamt = orderamt; + } + + public Date getPaytime() { + return paytime; + } + + public void setPaytime(Date paytime) { + this.paytime = paytime; + } + + public String getComplaintphone() { + return complaintphone; + } + + public void setComplaintphone(String complaintphone) { + this.complaintphone = complaintphone == null ? null : complaintphone.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public String getOrdernumber() { + return ordernumber; + } + + public void setOrdernumber(String ordernumber) { + this.ordernumber = ordernumber == null ? null : ordernumber.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantDevice.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantDevice.java new file mode 100644 index 0000000..f90bd23 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantDevice.java @@ -0,0 +1,138 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantDevice implements Serializable { + private Integer id; + + private String name; + + private String type; + + private String introdesc; + + private Integer status; + + private Date createdt; + + private String merchantcode; + + private String merchantname; + + private Integer userid; + + private String sn; + + private String vendercode; + + private String vendermodel; + + private String orderno; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public String getIntrodesc() { + return introdesc; + } + + public void setIntrodesc(String introdesc) { + this.introdesc = introdesc == null ? null : introdesc.trim(); + } + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getSn() { + return sn; + } + + public void setSn(String sn) { + this.sn = sn == null ? null : sn.trim(); + } + + public String getVendercode() { + return vendercode; + } + + public void setVendercode(String vendercode) { + this.vendercode = vendercode == null ? null : vendercode.trim(); + } + + public String getVendermodel() { + return vendermodel; + } + + public void setVendermodel(String vendermodel) { + this.vendermodel = vendermodel == null ? null : vendermodel.trim(); + } + + public String getOrderno() { + return orderno; + } + + public void setOrderno(String orderno) { + this.orderno = orderno == null ? null : orderno.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantGuide.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantGuide.java new file mode 100644 index 0000000..4167fa1 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantGuide.java @@ -0,0 +1,88 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantGuide implements Serializable { + private Integer id; + + private String merchantcode; + + private String merchantname; + + private String name; + + private String status; + + private Date createtime; + + private Date updatetime; + + private Integer guideid; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public Integer getGuideid() { + return guideid; + } + + public void setGuideid(Integer guideid) { + this.guideid = guideid; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantImage.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantImage.java new file mode 100644 index 0000000..4345d1a --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantImage.java @@ -0,0 +1,88 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantImage implements Serializable { + private Integer id; + + private String merchantcode; + + private String phototype; + + private String photourl; + + private String picurl; + + private Date createdt; + + private Date updatedt; + + private String aisleswitch; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getPhototype() { + return phototype; + } + + public void setPhototype(String phototype) { + this.phototype = phototype == null ? null : phototype.trim(); + } + + public String getPhotourl() { + return photourl; + } + + public void setPhotourl(String photourl) { + this.photourl = photourl == null ? null : photourl.trim(); + } + + public String getPicurl() { + return picurl; + } + + public void setPicurl(String picurl) { + this.picurl = picurl == null ? null : picurl.trim(); + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public Date getUpdatedt() { + return updatedt; + } + + public void setUpdatedt(Date updatedt) { + this.updatedt = updatedt; + } + + public String getAisleswitch() { + return aisleswitch; + } + + public void setAisleswitch(String aisleswitch) { + this.aisleswitch = aisleswitch == null ? null : aisleswitch.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantIncome.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantIncome.java new file mode 100644 index 0000000..8e48581 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantIncome.java @@ -0,0 +1,208 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantIncome implements Serializable { + private Integer id; + + private Integer userid; + + private String merchantcode; + + private String merchantname; + + private String storeid; + + private String storename; + + private Integer dealtype; + + private Double dealfee; + + private Double incomefee; + + private Date createtime; + + private String paytypecode; + + private String paytypename; + + private String membercode; + + private String membername; + + private String memberpic; + + private String incometype; + + private Double plateformprofit; + + private Double promoterprofit; + + private Integer dealstatus; + + private String dealcode; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public String getStoreid() { + return storeid; + } + + public void setStoreid(String storeid) { + this.storeid = storeid == null ? null : storeid.trim(); + } + + public String getStorename() { + return storename; + } + + public void setStorename(String storename) { + this.storename = storename == null ? null : storename.trim(); + } + + public Integer getDealtype() { + return dealtype; + } + + public void setDealtype(Integer dealtype) { + this.dealtype = dealtype; + } + + public Double getDealfee() { + return dealfee; + } + + public void setDealfee(Double dealfee) { + this.dealfee = dealfee; + } + + public Double getIncomefee() { + return incomefee; + } + + public void setIncomefee(Double incomefee) { + this.incomefee = incomefee; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public String getPaytypecode() { + return paytypecode; + } + + public void setPaytypecode(String paytypecode) { + this.paytypecode = paytypecode == null ? null : paytypecode.trim(); + } + + public String getPaytypename() { + return paytypename; + } + + public void setPaytypename(String paytypename) { + this.paytypename = paytypename == null ? null : paytypename.trim(); + } + + public String getMembercode() { + return membercode; + } + + public void setMembercode(String membercode) { + this.membercode = membercode == null ? null : membercode.trim(); + } + + public String getMembername() { + return membername; + } + + public void setMembername(String membername) { + this.membername = membername == null ? null : membername.trim(); + } + + public String getMemberpic() { + return memberpic; + } + + public void setMemberpic(String memberpic) { + this.memberpic = memberpic == null ? null : memberpic.trim(); + } + + public String getIncometype() { + return incometype; + } + + public void setIncometype(String incometype) { + this.incometype = incometype == null ? null : incometype.trim(); + } + + public Double getPlateformprofit() { + return plateformprofit; + } + + public void setPlateformprofit(Double plateformprofit) { + this.plateformprofit = plateformprofit; + } + + public Double getPromoterprofit() { + return promoterprofit; + } + + public void setPromoterprofit(Double promoterprofit) { + this.promoterprofit = promoterprofit; + } + + public Integer getDealstatus() { + return dealstatus; + } + + public void setDealstatus(Integer dealstatus) { + this.dealstatus = dealstatus; + } + + public String getDealcode() { + return dealcode; + } + + public void setDealcode(String dealcode) { + this.dealcode = dealcode == null ? null : dealcode.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantLkl.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantLkl.java new file mode 100644 index 0000000..d055ed4 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantLkl.java @@ -0,0 +1,37 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussMerchantLkl implements Serializable { + private String merchantid; + + private String merchantlkl; + + private String type; + + private static final long serialVersionUID = 1L; + + public String getMerchantid() { + return merchantid; + } + + public void setMerchantid(String merchantid) { + this.merchantid = merchantid == null ? null : merchantid.trim(); + } + + public String getMerchantlkl() { + return merchantlkl; + } + + public void setMerchantlkl(String merchantlkl) { + this.merchantlkl = merchantlkl == null ? null : merchantlkl.trim(); + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantMarket.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantMarket.java new file mode 100644 index 0000000..294e301 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantMarket.java @@ -0,0 +1,79 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussMerchantMarket implements Serializable { + private Integer id; + + private Integer userid; + + private String username; + + private BigDecimal marketamt; + + private String source; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getUsername() { + return username; + } + + public void setUsername(String username) { + this.username = username == null ? null : username.trim(); + } + + public BigDecimal getMarketamt() { + return marketamt; + } + + public void setMarketamt(BigDecimal marketamt) { + this.marketamt = marketamt; + } + + public String getSource() { + return source; + } + + public void setSource(String source) { + this.source = source == null ? null : source.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantMemberCode.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantMemberCode.java new file mode 100644 index 0000000..5cc35dc --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantMemberCode.java @@ -0,0 +1,78 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantMemberCode implements Serializable { + private Integer id; + + private String code; + + private String merchantcode; + + private String cardno; + + private Date starttime; + + private Date endtime; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getCardno() { + return cardno; + } + + public void setCardno(String cardno) { + this.cardno = cardno == null ? null : cardno.trim(); + } + + public Date getStarttime() { + return starttime; + } + + public void setStarttime(Date starttime) { + this.starttime = starttime; + } + + public Date getEndtime() { + return endtime; + } + + public void setEndtime(Date endtime) { + this.endtime = endtime; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantMenber.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantMenber.java new file mode 100644 index 0000000..a9cdac8 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantMenber.java @@ -0,0 +1,288 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantMenber implements Serializable { + private Integer id; + + private String merchantcode; + + private String merchantname; + + private String storeid; + + private String storename; + + private Integer status; + + private Date createdt; + + private String logo; + + private String membercode; + + private String membername; + + private String provinces; + + private String sex; + + private String nickname; + + private String phone; + + private String openid; + + private String alipayuserid; + + private Double comsumemoney; + + private Double profitmoney; + + private String ordernumber; + + private Double totalrechargefee; + + private Double usablerechargefee; + + private Double totalgivefee; + + private Double usablegivefee; + + private String birthdaydt; + + private String cardno; + + private String bindingurl; + + private String appopenid; + + private String unionid; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public String getStoreid() { + return storeid; + } + + public void setStoreid(String storeid) { + this.storeid = storeid == null ? null : storeid.trim(); + } + + public String getStorename() { + return storename; + } + + public void setStorename(String storename) { + this.storename = storename == null ? null : storename.trim(); + } + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public String getLogo() { + return logo; + } + + public void setLogo(String logo) { + this.logo = logo == null ? null : logo.trim(); + } + + public String getMembercode() { + return membercode; + } + + public void setMembercode(String membercode) { + this.membercode = membercode == null ? null : membercode.trim(); + } + + public String getMembername() { + return membername; + } + + public void setMembername(String membername) { + this.membername = membername == null ? null : membername.trim(); + } + + public String getProvinces() { + return provinces; + } + + public void setProvinces(String provinces) { + this.provinces = provinces == null ? null : provinces.trim(); + } + + public String getSex() { + return sex; + } + + public void setSex(String sex) { + this.sex = sex == null ? null : sex.trim(); + } + + public String getNickname() { + return nickname; + } + + public void setNickname(String nickname) { + this.nickname = nickname == null ? null : nickname.trim(); + } + + public String getPhone() { + return phone; + } + + public void setPhone(String phone) { + this.phone = phone == null ? null : phone.trim(); + } + + public String getOpenid() { + return openid; + } + + public void setOpenid(String openid) { + this.openid = openid == null ? null : openid.trim(); + } + + public String getAlipayuserid() { + return alipayuserid; + } + + public void setAlipayuserid(String alipayuserid) { + this.alipayuserid = alipayuserid == null ? null : alipayuserid.trim(); + } + + public Double getComsumemoney() { + return comsumemoney; + } + + public void setComsumemoney(Double comsumemoney) { + this.comsumemoney = comsumemoney; + } + + public Double getProfitmoney() { + return profitmoney; + } + + public void setProfitmoney(Double profitmoney) { + this.profitmoney = profitmoney; + } + + public String getOrdernumber() { + return ordernumber; + } + + public void setOrdernumber(String ordernumber) { + this.ordernumber = ordernumber == null ? null : ordernumber.trim(); + } + + public Double getTotalrechargefee() { + return totalrechargefee; + } + + public void setTotalrechargefee(Double totalrechargefee) { + this.totalrechargefee = totalrechargefee; + } + + public Double getUsablerechargefee() { + return usablerechargefee; + } + + public void setUsablerechargefee(Double usablerechargefee) { + this.usablerechargefee = usablerechargefee; + } + + public Double getTotalgivefee() { + return totalgivefee; + } + + public void setTotalgivefee(Double totalgivefee) { + this.totalgivefee = totalgivefee; + } + + public Double getUsablegivefee() { + return usablegivefee; + } + + public void setUsablegivefee(Double usablegivefee) { + this.usablegivefee = usablegivefee; + } + + public String getBirthdaydt() { + return birthdaydt; + } + + public void setBirthdaydt(String birthdaydt) { + this.birthdaydt = birthdaydt == null ? null : birthdaydt.trim(); + } + + public String getCardno() { + return cardno; + } + + public void setCardno(String cardno) { + this.cardno = cardno == null ? null : cardno.trim(); + } + + public String getBindingurl() { + return bindingurl; + } + + public void setBindingurl(String bindingurl) { + this.bindingurl = bindingurl == null ? null : bindingurl.trim(); + } + + public String getAppopenid() { + return appopenid; + } + + public void setAppopenid(String appopenid) { + this.appopenid = appopenid == null ? null : appopenid.trim(); + } + + public String getUnionid() { + return unionid; + } + + public void setUnionid(String unionid) { + this.unionid = unionid == null ? null : unionid.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantMenberComsume.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantMenberComsume.java new file mode 100644 index 0000000..68f88e9 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantMenberComsume.java @@ -0,0 +1,148 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantMenberComsume implements Serializable { + private Integer id; + + private String merchantcode; + + private String merchantname; + + private String storeid; + + private String storename; + + private String ordernumber; + + private Date createdt; + + private String logo; + + private String membercode; + + private String nickname; + + private String phone; + + private Double comsumemoney; + + private Double givemoney; + + private Integer paytype; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public String getStoreid() { + return storeid; + } + + public void setStoreid(String storeid) { + this.storeid = storeid == null ? null : storeid.trim(); + } + + public String getStorename() { + return storename; + } + + public void setStorename(String storename) { + this.storename = storename == null ? null : storename.trim(); + } + + public String getOrdernumber() { + return ordernumber; + } + + public void setOrdernumber(String ordernumber) { + this.ordernumber = ordernumber == null ? null : ordernumber.trim(); + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public String getLogo() { + return logo; + } + + public void setLogo(String logo) { + this.logo = logo == null ? null : logo.trim(); + } + + public String getMembercode() { + return membercode; + } + + public void setMembercode(String membercode) { + this.membercode = membercode == null ? null : membercode.trim(); + } + + public String getNickname() { + return nickname; + } + + public void setNickname(String nickname) { + this.nickname = nickname == null ? null : nickname.trim(); + } + + public String getPhone() { + return phone; + } + + public void setPhone(String phone) { + this.phone = phone == null ? null : phone.trim(); + } + + public Double getComsumemoney() { + return comsumemoney; + } + + public void setComsumemoney(Double comsumemoney) { + this.comsumemoney = comsumemoney; + } + + public Double getGivemoney() { + return givemoney; + } + + public void setGivemoney(Double givemoney) { + this.givemoney = givemoney; + } + + public Integer getPaytype() { + return paytype; + } + + public void setPaytype(Integer paytype) { + this.paytype = paytype; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantMenberRecharge.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantMenberRecharge.java new file mode 100644 index 0000000..a839409 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantMenberRecharge.java @@ -0,0 +1,148 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantMenberRecharge implements Serializable { + private Integer id; + + private String merchantcode; + + private String merchantname; + + private String storeid; + + private String storename; + + private String ordernumber; + + private Date createdt; + + private String logo; + + private String membercode; + + private String nickname; + + private String phone; + + private Double rechargemoney; + + private Double givemoney; + + private Integer paytype; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public String getStoreid() { + return storeid; + } + + public void setStoreid(String storeid) { + this.storeid = storeid == null ? null : storeid.trim(); + } + + public String getStorename() { + return storename; + } + + public void setStorename(String storename) { + this.storename = storename == null ? null : storename.trim(); + } + + public String getOrdernumber() { + return ordernumber; + } + + public void setOrdernumber(String ordernumber) { + this.ordernumber = ordernumber == null ? null : ordernumber.trim(); + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public String getLogo() { + return logo; + } + + public void setLogo(String logo) { + this.logo = logo == null ? null : logo.trim(); + } + + public String getMembercode() { + return membercode; + } + + public void setMembercode(String membercode) { + this.membercode = membercode == null ? null : membercode.trim(); + } + + public String getNickname() { + return nickname; + } + + public void setNickname(String nickname) { + this.nickname = nickname == null ? null : nickname.trim(); + } + + public String getPhone() { + return phone; + } + + public void setPhone(String phone) { + this.phone = phone == null ? null : phone.trim(); + } + + public Double getRechargemoney() { + return rechargemoney; + } + + public void setRechargemoney(Double rechargemoney) { + this.rechargemoney = rechargemoney; + } + + public Double getGivemoney() { + return givemoney; + } + + public void setGivemoney(Double givemoney) { + this.givemoney = givemoney; + } + + public Integer getPaytype() { + return paytype; + } + + public void setPaytype(Integer paytype) { + this.paytype = paytype; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantMoveRecords.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantMoveRecords.java new file mode 100644 index 0000000..997a9d6 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantMoveRecords.java @@ -0,0 +1,128 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantMoveRecords implements Serializable { + private Integer id; + + private String merchantcode; + + private String merchantname; + + private Date starttime; + + private Date endtime; + + private String token; + + private Date createtime; + + private String ip; + + private String payuserid; + + private Integer paynum; + + private Integer paysource; + + private String ordernumber; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public Date getStarttime() { + return starttime; + } + + public void setStarttime(Date starttime) { + this.starttime = starttime; + } + + public Date getEndtime() { + return endtime; + } + + public void setEndtime(Date endtime) { + this.endtime = endtime; + } + + public String getToken() { + return token; + } + + public void setToken(String token) { + this.token = token == null ? null : token.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public String getIp() { + return ip; + } + + public void setIp(String ip) { + this.ip = ip == null ? null : ip.trim(); + } + + public String getPayuserid() { + return payuserid; + } + + public void setPayuserid(String payuserid) { + this.payuserid = payuserid == null ? null : payuserid.trim(); + } + + public Integer getPaynum() { + return paynum; + } + + public void setPaynum(Integer paynum) { + this.paynum = paynum; + } + + public Integer getPaysource() { + return paysource; + } + + public void setPaysource(Integer paysource) { + this.paysource = paysource; + } + + public String getOrdernumber() { + return ordernumber; + } + + public void setOrdernumber(String ordernumber) { + this.ordernumber = ordernumber == null ? null : ordernumber.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantMoveSetting.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantMoveSetting.java new file mode 100644 index 0000000..b8e9f26 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantMoveSetting.java @@ -0,0 +1,98 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantMoveSetting implements Serializable { + private Integer id; + + private String merchantcode; + + private String merchantname; + + private Integer qrNum; + + private Integer payNum; + + private String aeskey; + + private Integer status; + + private Integer payovertime; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public Integer getQrNum() { + return qrNum; + } + + public void setQrNum(Integer qrNum) { + this.qrNum = qrNum; + } + + public Integer getPayNum() { + return payNum; + } + + public void setPayNum(Integer payNum) { + this.payNum = payNum; + } + + public String getAeskey() { + return aeskey; + } + + public void setAeskey(String aeskey) { + this.aeskey = aeskey == null ? null : aeskey.trim(); + } + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public Integer getPayovertime() { + return payovertime; + } + + public void setPayovertime(Integer payovertime) { + this.payovertime = payovertime; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantOrder.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantOrder.java new file mode 100644 index 0000000..81b5c45 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantOrder.java @@ -0,0 +1,529 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussMerchantOrder implements Serializable { + private Integer id; + + private String ordernumber; + + private String userimg; + + private String nickname; + + private String ordertype; + + private String merchantcode; + + private String merchantname; + + private String paytypecode; + + private String paytypename; + + private String thirdtransno; + + private String storeid; + + private String storename; + + private Double consumefee; + + private String transno; + + private String membercode; + + private Date createdt; + + private Date transdt; + + private String staffcode; + + private String staffname; + + private String status; + + private Double enterfee; + + private String aisleswitch; + + private String remark; + + private Date updatetime; + + private BigDecimal rate; + + private BigDecimal marketamt; + + private String mercorderno; + + private String mercnotifyurl; + + private String mercuserid; + + private String mercnotifystatus; + + private String mercremark; + + private String isrecharge; + + private String snno; + + private Integer cashplaceid; + + private Boolean settlementtype; + + private Double fanssharemoney; + + private Double profitsharemoney; + + private String drtype; + + private BigDecimal channelrate; + + private BigDecimal channelfee; + + private BigDecimal mercfee; + + private String ip; + + private String ipaddress; + + private String mercreturnurl; + + private String channeltype; + + private Date createdate; + + private Date updatedate; + + private String preauthstatus; + + private BigDecimal refundamt; + + private BigDecimal cashfee; + + private String thirdsendno; + + private String paydata; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getOrdernumber() { + return ordernumber; + } + + public void setOrdernumber(String ordernumber) { + this.ordernumber = ordernumber == null ? null : ordernumber.trim(); + } + + public String getUserimg() { + return userimg; + } + + public void setUserimg(String userimg) { + this.userimg = userimg == null ? null : userimg.trim(); + } + + public String getNickname() { + return nickname; + } + + public void setNickname(String nickname) { + this.nickname = nickname == null ? null : nickname.trim(); + } + + public String getOrdertype() { + return ordertype; + } + + public void setOrdertype(String ordertype) { + this.ordertype = ordertype == null ? null : ordertype.trim(); + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public String getPaytypecode() { + return paytypecode; + } + + public void setPaytypecode(String paytypecode) { + this.paytypecode = paytypecode == null ? null : paytypecode.trim(); + } + + public String getPaytypename() { + return paytypename; + } + + public void setPaytypename(String paytypename) { + this.paytypename = paytypename == null ? null : paytypename.trim(); + } + + public String getThirdtransno() { + return thirdtransno; + } + + public void setThirdtransno(String thirdtransno) { + this.thirdtransno = thirdtransno == null ? null : thirdtransno.trim(); + } + + public String getStoreid() { + return storeid; + } + + public void setStoreid(String storeid) { + this.storeid = storeid == null ? null : storeid.trim(); + } + + public String getStorename() { + return storename; + } + + public void setStorename(String storename) { + this.storename = storename == null ? null : storename.trim(); + } + + public Double getConsumefee() { + return consumefee; + } + + public void setConsumefee(Double consumefee) { + this.consumefee = consumefee; + } + + public String getTransno() { + return transno; + } + + public void setTransno(String transno) { + this.transno = transno == null ? null : transno.trim(); + } + + public String getMembercode() { + return membercode; + } + + public void setMembercode(String membercode) { + this.membercode = membercode == null ? null : membercode.trim(); + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public Date getTransdt() { + return transdt; + } + + public void setTransdt(Date transdt) { + this.transdt = transdt; + } + + public String getStaffcode() { + return staffcode; + } + + public void setStaffcode(String staffcode) { + this.staffcode = staffcode == null ? null : staffcode.trim(); + } + + public String getStaffname() { + return staffname; + } + + public void setStaffname(String staffname) { + this.staffname = staffname == null ? null : staffname.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public Double getEnterfee() { + return enterfee; + } + + public void setEnterfee(Double enterfee) { + this.enterfee = enterfee; + } + + public String getAisleswitch() { + return aisleswitch; + } + + public void setAisleswitch(String aisleswitch) { + this.aisleswitch = aisleswitch == null ? null : aisleswitch.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public BigDecimal getRate() { + return rate; + } + + public void setRate(BigDecimal rate) { + this.rate = rate; + } + + public BigDecimal getMarketamt() { + return marketamt; + } + + public void setMarketamt(BigDecimal marketamt) { + this.marketamt = marketamt; + } + + public String getMercorderno() { + return mercorderno; + } + + public void setMercorderno(String mercorderno) { + this.mercorderno = mercorderno == null ? null : mercorderno.trim(); + } + + public String getMercnotifyurl() { + return mercnotifyurl; + } + + public void setMercnotifyurl(String mercnotifyurl) { + this.mercnotifyurl = mercnotifyurl == null ? null : mercnotifyurl.trim(); + } + + public String getMercuserid() { + return mercuserid; + } + + public void setMercuserid(String mercuserid) { + this.mercuserid = mercuserid == null ? null : mercuserid.trim(); + } + + public String getMercnotifystatus() { + return mercnotifystatus; + } + + public void setMercnotifystatus(String mercnotifystatus) { + this.mercnotifystatus = mercnotifystatus == null ? null : mercnotifystatus.trim(); + } + + public String getMercremark() { + return mercremark; + } + + public void setMercremark(String mercremark) { + this.mercremark = mercremark == null ? null : mercremark.trim(); + } + + public String getIsrecharge() { + return isrecharge; + } + + public void setIsrecharge(String isrecharge) { + this.isrecharge = isrecharge == null ? null : isrecharge.trim(); + } + + public String getSnno() { + return snno; + } + + public void setSnno(String snno) { + this.snno = snno == null ? null : snno.trim(); + } + + public Integer getCashplaceid() { + return cashplaceid; + } + + public void setCashplaceid(Integer cashplaceid) { + this.cashplaceid = cashplaceid; + } + + public Boolean getSettlementtype() { + return settlementtype; + } + + public void setSettlementtype(Boolean settlementtype) { + this.settlementtype = settlementtype; + } + + public Double getFanssharemoney() { + return fanssharemoney; + } + + public void setFanssharemoney(Double fanssharemoney) { + this.fanssharemoney = fanssharemoney; + } + + public Double getProfitsharemoney() { + return profitsharemoney; + } + + public void setProfitsharemoney(Double profitsharemoney) { + this.profitsharemoney = profitsharemoney; + } + + public String getDrtype() { + return drtype; + } + + public void setDrtype(String drtype) { + this.drtype = drtype == null ? null : drtype.trim(); + } + + public BigDecimal getChannelrate() { + return channelrate; + } + + public void setChannelrate(BigDecimal channelrate) { + this.channelrate = channelrate; + } + + public BigDecimal getChannelfee() { + return channelfee; + } + + public void setChannelfee(BigDecimal channelfee) { + this.channelfee = channelfee; + } + + public BigDecimal getMercfee() { + return mercfee; + } + + public void setMercfee(BigDecimal mercfee) { + this.mercfee = mercfee; + } + + public String getIp() { + return ip; + } + + public void setIp(String ip) { + this.ip = ip == null ? null : ip.trim(); + } + + public String getIpaddress() { + return ipaddress; + } + + public void setIpaddress(String ipaddress) { + this.ipaddress = ipaddress == null ? null : ipaddress.trim(); + } + + public String getMercreturnurl() { + return mercreturnurl; + } + + public void setMercreturnurl(String mercreturnurl) { + this.mercreturnurl = mercreturnurl == null ? null : mercreturnurl.trim(); + } + + public String getChanneltype() { + return channeltype; + } + + public void setChanneltype(String channeltype) { + this.channeltype = channeltype == null ? null : channeltype.trim(); + } + + public Date getCreatedate() { + return createdate; + } + + public void setCreatedate(Date createdate) { + this.createdate = createdate; + } + + public Date getUpdatedate() { + return updatedate; + } + + public void setUpdatedate(Date updatedate) { + this.updatedate = updatedate; + } + + public String getPreauthstatus() { + return preauthstatus; + } + + public void setPreauthstatus(String preauthstatus) { + this.preauthstatus = preauthstatus == null ? null : preauthstatus.trim(); + } + + public BigDecimal getRefundamt() { + return refundamt; + } + + public void setRefundamt(BigDecimal refundamt) { + this.refundamt = refundamt; + } + + public BigDecimal getCashfee() { + return cashfee; + } + + public void setCashfee(BigDecimal cashfee) { + this.cashfee = cashfee; + } + + public String getThirdsendno() { + return thirdsendno; + } + + public void setThirdsendno(String thirdsendno) { + this.thirdsendno = thirdsendno == null ? null : thirdsendno.trim(); + } + + public String getPaydata() { + return paydata; + } + + public void setPaydata(String paydata) { + this.paydata = paydata == null ? null : paydata.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantOrderOldLs.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantOrderOldLs.java new file mode 100644 index 0000000..4006275 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantOrderOldLs.java @@ -0,0 +1,499 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussMerchantOrderOldLs implements Serializable { + private Integer id; + + private String ordernumber; + + private String userimg; + + private String nickname; + + private String ordertype; + + private String merchantcode; + + private String merchantname; + + private String paytypecode; + + private String paytypename; + + private String thirdtransno; + + private String storeid; + + private String storename; + + private Double consumefee; + + private String transno; + + private String membercode; + + private Date createdt; + + private Date transdt; + + private String staffcode; + + private String staffname; + + private String status; + + private Double enterfee; + + private String aisleswitch; + + private String remark; + + private Date updatetime; + + private BigDecimal rate; + + private BigDecimal marketamt; + + private String mercorderno; + + private String mercnotifyurl; + + private String mercuserid; + + private String mercnotifystatus; + + private String mercremark; + + private String isrecharge; + + private String snno; + + private Integer cashplaceid; + + private Boolean settlementtype; + + private Double fanssharemoney; + + private Double profitsharemoney; + + private String drtype; + + private BigDecimal channelrate; + + private BigDecimal channelfee; + + private BigDecimal mercfee; + + private String ip; + + private String ipaddress; + + private String mercreturnurl; + + private String channeltype; + + private Date createdate; + + private String preauthstatus; + + private BigDecimal refundamt; + + private String paydata; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getOrdernumber() { + return ordernumber; + } + + public void setOrdernumber(String ordernumber) { + this.ordernumber = ordernumber == null ? null : ordernumber.trim(); + } + + public String getUserimg() { + return userimg; + } + + public void setUserimg(String userimg) { + this.userimg = userimg == null ? null : userimg.trim(); + } + + public String getNickname() { + return nickname; + } + + public void setNickname(String nickname) { + this.nickname = nickname == null ? null : nickname.trim(); + } + + public String getOrdertype() { + return ordertype; + } + + public void setOrdertype(String ordertype) { + this.ordertype = ordertype == null ? null : ordertype.trim(); + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public String getPaytypecode() { + return paytypecode; + } + + public void setPaytypecode(String paytypecode) { + this.paytypecode = paytypecode == null ? null : paytypecode.trim(); + } + + public String getPaytypename() { + return paytypename; + } + + public void setPaytypename(String paytypename) { + this.paytypename = paytypename == null ? null : paytypename.trim(); + } + + public String getThirdtransno() { + return thirdtransno; + } + + public void setThirdtransno(String thirdtransno) { + this.thirdtransno = thirdtransno == null ? null : thirdtransno.trim(); + } + + public String getStoreid() { + return storeid; + } + + public void setStoreid(String storeid) { + this.storeid = storeid == null ? null : storeid.trim(); + } + + public String getStorename() { + return storename; + } + + public void setStorename(String storename) { + this.storename = storename == null ? null : storename.trim(); + } + + public Double getConsumefee() { + return consumefee; + } + + public void setConsumefee(Double consumefee) { + this.consumefee = consumefee; + } + + public String getTransno() { + return transno; + } + + public void setTransno(String transno) { + this.transno = transno == null ? null : transno.trim(); + } + + public String getMembercode() { + return membercode; + } + + public void setMembercode(String membercode) { + this.membercode = membercode == null ? null : membercode.trim(); + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public Date getTransdt() { + return transdt; + } + + public void setTransdt(Date transdt) { + this.transdt = transdt; + } + + public String getStaffcode() { + return staffcode; + } + + public void setStaffcode(String staffcode) { + this.staffcode = staffcode == null ? null : staffcode.trim(); + } + + public String getStaffname() { + return staffname; + } + + public void setStaffname(String staffname) { + this.staffname = staffname == null ? null : staffname.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public Double getEnterfee() { + return enterfee; + } + + public void setEnterfee(Double enterfee) { + this.enterfee = enterfee; + } + + public String getAisleswitch() { + return aisleswitch; + } + + public void setAisleswitch(String aisleswitch) { + this.aisleswitch = aisleswitch == null ? null : aisleswitch.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public BigDecimal getRate() { + return rate; + } + + public void setRate(BigDecimal rate) { + this.rate = rate; + } + + public BigDecimal getMarketamt() { + return marketamt; + } + + public void setMarketamt(BigDecimal marketamt) { + this.marketamt = marketamt; + } + + public String getMercorderno() { + return mercorderno; + } + + public void setMercorderno(String mercorderno) { + this.mercorderno = mercorderno == null ? null : mercorderno.trim(); + } + + public String getMercnotifyurl() { + return mercnotifyurl; + } + + public void setMercnotifyurl(String mercnotifyurl) { + this.mercnotifyurl = mercnotifyurl == null ? null : mercnotifyurl.trim(); + } + + public String getMercuserid() { + return mercuserid; + } + + public void setMercuserid(String mercuserid) { + this.mercuserid = mercuserid == null ? null : mercuserid.trim(); + } + + public String getMercnotifystatus() { + return mercnotifystatus; + } + + public void setMercnotifystatus(String mercnotifystatus) { + this.mercnotifystatus = mercnotifystatus == null ? null : mercnotifystatus.trim(); + } + + public String getMercremark() { + return mercremark; + } + + public void setMercremark(String mercremark) { + this.mercremark = mercremark == null ? null : mercremark.trim(); + } + + public String getIsrecharge() { + return isrecharge; + } + + public void setIsrecharge(String isrecharge) { + this.isrecharge = isrecharge == null ? null : isrecharge.trim(); + } + + public String getSnno() { + return snno; + } + + public void setSnno(String snno) { + this.snno = snno == null ? null : snno.trim(); + } + + public Integer getCashplaceid() { + return cashplaceid; + } + + public void setCashplaceid(Integer cashplaceid) { + this.cashplaceid = cashplaceid; + } + + public Boolean getSettlementtype() { + return settlementtype; + } + + public void setSettlementtype(Boolean settlementtype) { + this.settlementtype = settlementtype; + } + + public Double getFanssharemoney() { + return fanssharemoney; + } + + public void setFanssharemoney(Double fanssharemoney) { + this.fanssharemoney = fanssharemoney; + } + + public Double getProfitsharemoney() { + return profitsharemoney; + } + + public void setProfitsharemoney(Double profitsharemoney) { + this.profitsharemoney = profitsharemoney; + } + + public String getDrtype() { + return drtype; + } + + public void setDrtype(String drtype) { + this.drtype = drtype == null ? null : drtype.trim(); + } + + public BigDecimal getChannelrate() { + return channelrate; + } + + public void setChannelrate(BigDecimal channelrate) { + this.channelrate = channelrate; + } + + public BigDecimal getChannelfee() { + return channelfee; + } + + public void setChannelfee(BigDecimal channelfee) { + this.channelfee = channelfee; + } + + public BigDecimal getMercfee() { + return mercfee; + } + + public void setMercfee(BigDecimal mercfee) { + this.mercfee = mercfee; + } + + public String getIp() { + return ip; + } + + public void setIp(String ip) { + this.ip = ip == null ? null : ip.trim(); + } + + public String getIpaddress() { + return ipaddress; + } + + public void setIpaddress(String ipaddress) { + this.ipaddress = ipaddress == null ? null : ipaddress.trim(); + } + + public String getMercreturnurl() { + return mercreturnurl; + } + + public void setMercreturnurl(String mercreturnurl) { + this.mercreturnurl = mercreturnurl == null ? null : mercreturnurl.trim(); + } + + public String getChanneltype() { + return channeltype; + } + + public void setChanneltype(String channeltype) { + this.channeltype = channeltype == null ? null : channeltype.trim(); + } + + public Date getCreatedate() { + return createdate; + } + + public void setCreatedate(Date createdate) { + this.createdate = createdate; + } + + public String getPreauthstatus() { + return preauthstatus; + } + + public void setPreauthstatus(String preauthstatus) { + this.preauthstatus = preauthstatus == null ? null : preauthstatus.trim(); + } + + public BigDecimal getRefundamt() { + return refundamt; + } + + public void setRefundamt(BigDecimal refundamt) { + this.refundamt = refundamt; + } + + public String getPaydata() { + return paydata; + } + + public void setPaydata(String paydata) { + this.paydata = paydata == null ? null : paydata.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantOrderSplit.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantOrderSplit.java new file mode 100644 index 0000000..d1a0115 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantOrderSplit.java @@ -0,0 +1,229 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussMerchantOrderSplit implements Serializable { + private Integer id; + + private String ordernumber; + + private BigDecimal orderamt; + + private Date paytime; + + private Integer status; + + private String mercorderno; + + private String merchantcode; + + private String merchantid; + + private String merchantname; + + private String divisionmode; + + private Byte divstatus; + + private BigDecimal fee; + + private Date createtime; + + private String feepayer; + + private String divstatuscode; + + private String remark; + + private BigDecimal refundamt; + + private String notifyurl; + + private String aisleswitch; + + private String paytypename; + + private String paytypecode; + + private String ordertype; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getOrdernumber() { + return ordernumber; + } + + public void setOrdernumber(String ordernumber) { + this.ordernumber = ordernumber == null ? null : ordernumber.trim(); + } + + public BigDecimal getOrderamt() { + return orderamt; + } + + public void setOrderamt(BigDecimal orderamt) { + this.orderamt = orderamt; + } + + public Date getPaytime() { + return paytime; + } + + public void setPaytime(Date paytime) { + this.paytime = paytime; + } + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public String getMercorderno() { + return mercorderno; + } + + public void setMercorderno(String mercorderno) { + this.mercorderno = mercorderno == null ? null : mercorderno.trim(); + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantid() { + return merchantid; + } + + public void setMerchantid(String merchantid) { + this.merchantid = merchantid == null ? null : merchantid.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public String getDivisionmode() { + return divisionmode; + } + + public void setDivisionmode(String divisionmode) { + this.divisionmode = divisionmode == null ? null : divisionmode.trim(); + } + + public Byte getDivstatus() { + return divstatus; + } + + public void setDivstatus(Byte divstatus) { + this.divstatus = divstatus; + } + + public BigDecimal getFee() { + return fee; + } + + public void setFee(BigDecimal fee) { + this.fee = fee; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public String getFeepayer() { + return feepayer; + } + + public void setFeepayer(String feepayer) { + this.feepayer = feepayer == null ? null : feepayer.trim(); + } + + public String getDivstatuscode() { + return divstatuscode; + } + + public void setDivstatuscode(String divstatuscode) { + this.divstatuscode = divstatuscode == null ? null : divstatuscode.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public BigDecimal getRefundamt() { + return refundamt; + } + + public void setRefundamt(BigDecimal refundamt) { + this.refundamt = refundamt; + } + + public String getNotifyurl() { + return notifyurl; + } + + public void setNotifyurl(String notifyurl) { + this.notifyurl = notifyurl == null ? null : notifyurl.trim(); + } + + public String getAisleswitch() { + return aisleswitch; + } + + public void setAisleswitch(String aisleswitch) { + this.aisleswitch = aisleswitch == null ? null : aisleswitch.trim(); + } + + public String getPaytypename() { + return paytypename; + } + + public void setPaytypename(String paytypename) { + this.paytypename = paytypename == null ? null : paytypename.trim(); + } + + public String getPaytypecode() { + return paytypecode; + } + + public void setPaytypecode(String paytypecode) { + this.paytypecode = paytypecode == null ? null : paytypecode.trim(); + } + + public String getOrdertype() { + return ordertype; + } + + public void setOrdertype(String ordertype) { + this.ordertype = ordertype == null ? null : ordertype.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantOrderSplitDetail.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantOrderSplitDetail.java new file mode 100644 index 0000000..40594de --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantOrderSplitDetail.java @@ -0,0 +1,179 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussMerchantOrderSplitDetail implements Serializable { + private Integer id; + + private String merchantcode; + + private String merchantid; + + private String merchantname; + + private String ordernumber; + + private BigDecimal orderamt; + + private BigDecimal divratio; + + private BigDecimal divamt; + + private BigDecimal finalamt; + + private String remark; + + private Date createtime; + + private String ischargefee; + + private Byte status; + + private BigDecimal refundamt; + + private String state; + + private String channelsendsn; + + private String channelrecvsn; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantid() { + return merchantid; + } + + public void setMerchantid(String merchantid) { + this.merchantid = merchantid == null ? null : merchantid.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public String getOrdernumber() { + return ordernumber; + } + + public void setOrdernumber(String ordernumber) { + this.ordernumber = ordernumber == null ? null : ordernumber.trim(); + } + + public BigDecimal getOrderamt() { + return orderamt; + } + + public void setOrderamt(BigDecimal orderamt) { + this.orderamt = orderamt; + } + + public BigDecimal getDivratio() { + return divratio; + } + + public void setDivratio(BigDecimal divratio) { + this.divratio = divratio; + } + + public BigDecimal getDivamt() { + return divamt; + } + + public void setDivamt(BigDecimal divamt) { + this.divamt = divamt; + } + + public BigDecimal getFinalamt() { + return finalamt; + } + + public void setFinalamt(BigDecimal finalamt) { + this.finalamt = finalamt; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public String getIschargefee() { + return ischargefee; + } + + public void setIschargefee(String ischargefee) { + this.ischargefee = ischargefee == null ? null : ischargefee.trim(); + } + + public Byte getStatus() { + return status; + } + + public void setStatus(Byte status) { + this.status = status; + } + + public BigDecimal getRefundamt() { + return refundamt; + } + + public void setRefundamt(BigDecimal refundamt) { + this.refundamt = refundamt; + } + + public String getState() { + return state; + } + + public void setState(String state) { + this.state = state == null ? null : state.trim(); + } + + public String getChannelsendsn() { + return channelsendsn; + } + + public void setChannelsendsn(String channelsendsn) { + this.channelsendsn = channelsendsn == null ? null : channelsendsn.trim(); + } + + public String getChannelrecvsn() { + return channelrecvsn; + } + + public void setChannelrecvsn(String channelrecvsn) { + this.channelrecvsn = channelrecvsn == null ? null : channelrecvsn.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantOrderSplitRefund.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantOrderSplitRefund.java new file mode 100644 index 0000000..a873e5a --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantOrderSplitRefund.java @@ -0,0 +1,179 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussMerchantOrderSplitRefund implements Serializable { + private Integer id; + + private String ordernumber; + + private String mercorderno; + + private Integer status; + + private BigDecimal orderamt; + + private Date ordertime; + + private String refundno; + + private String mercrefundno; + + private Date refundtime; + + private String notifyurl; + + private BigDecimal refundamt; + + private String refundreason; + + private String remark; + + private String channelrefundstate; + + private String channelfundsstate; + + private String channelfundsdesc; + + private String channelrefundno; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getOrdernumber() { + return ordernumber; + } + + public void setOrdernumber(String ordernumber) { + this.ordernumber = ordernumber == null ? null : ordernumber.trim(); + } + + public String getMercorderno() { + return mercorderno; + } + + public void setMercorderno(String mercorderno) { + this.mercorderno = mercorderno == null ? null : mercorderno.trim(); + } + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public BigDecimal getOrderamt() { + return orderamt; + } + + public void setOrderamt(BigDecimal orderamt) { + this.orderamt = orderamt; + } + + public Date getOrdertime() { + return ordertime; + } + + public void setOrdertime(Date ordertime) { + this.ordertime = ordertime; + } + + public String getRefundno() { + return refundno; + } + + public void setRefundno(String refundno) { + this.refundno = refundno == null ? null : refundno.trim(); + } + + public String getMercrefundno() { + return mercrefundno; + } + + public void setMercrefundno(String mercrefundno) { + this.mercrefundno = mercrefundno == null ? null : mercrefundno.trim(); + } + + public Date getRefundtime() { + return refundtime; + } + + public void setRefundtime(Date refundtime) { + this.refundtime = refundtime; + } + + public String getNotifyurl() { + return notifyurl; + } + + public void setNotifyurl(String notifyurl) { + this.notifyurl = notifyurl == null ? null : notifyurl.trim(); + } + + public BigDecimal getRefundamt() { + return refundamt; + } + + public void setRefundamt(BigDecimal refundamt) { + this.refundamt = refundamt; + } + + public String getRefundreason() { + return refundreason; + } + + public void setRefundreason(String refundreason) { + this.refundreason = refundreason == null ? null : refundreason.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public String getChannelrefundstate() { + return channelrefundstate; + } + + public void setChannelrefundstate(String channelrefundstate) { + this.channelrefundstate = channelrefundstate == null ? null : channelrefundstate.trim(); + } + + public String getChannelfundsstate() { + return channelfundsstate; + } + + public void setChannelfundsstate(String channelfundsstate) { + this.channelfundsstate = channelfundsstate == null ? null : channelfundsstate.trim(); + } + + public String getChannelfundsdesc() { + return channelfundsdesc; + } + + public void setChannelfundsdesc(String channelfundsdesc) { + this.channelfundsdesc = channelfundsdesc == null ? null : channelfundsdesc.trim(); + } + + public String getChannelrefundno() { + return channelrefundno; + } + + public void setChannelrefundno(String channelrefundno) { + this.channelrefundno = channelrefundno == null ? null : channelrefundno.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantOrderStaff.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantOrderStaff.java new file mode 100644 index 0000000..db652f2 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantOrderStaff.java @@ -0,0 +1,58 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantOrderStaff implements Serializable { + private Integer id; + + private String ordernumber; + + private Integer userid; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getOrdernumber() { + return ordernumber; + } + + public void setOrdernumber(String ordernumber) { + this.ordernumber = ordernumber == null ? null : ordernumber.trim(); + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantOrderStatistics.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantOrderStatistics.java new file mode 100644 index 0000000..0f27a53 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantOrderStatistics.java @@ -0,0 +1,99 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussMerchantOrderStatistics implements Serializable { + private Integer id; + + private String merchantcode; + + private BigDecimal totalfee; + + private Integer count; + + private BigDecimal retfee; + + private Integer retcount; + + private Date startdate; + + private Date enddate; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public BigDecimal getTotalfee() { + return totalfee; + } + + public void setTotalfee(BigDecimal totalfee) { + this.totalfee = totalfee; + } + + public Integer getCount() { + return count; + } + + public void setCount(Integer count) { + this.count = count; + } + + public BigDecimal getRetfee() { + return retfee; + } + + public void setRetfee(BigDecimal retfee) { + this.retfee = retfee; + } + + public Integer getRetcount() { + return retcount; + } + + public void setRetcount(Integer retcount) { + this.retcount = retcount; + } + + public Date getStartdate() { + return startdate; + } + + public void setStartdate(Date startdate) { + this.startdate = startdate; + } + + public Date getEnddate() { + return enddate; + } + + public void setEnddate(Date enddate) { + this.enddate = enddate; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantPlugin.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantPlugin.java new file mode 100644 index 0000000..4685128 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantPlugin.java @@ -0,0 +1,128 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantPlugin implements Serializable { + private Integer id; + + private Integer channel; + + private Integer userid; + + private String pluginid; + + private String status; + + private String thirdstatus; + + private String applicationid; + + private String remark; + + private Date createtime; + + private Date updatetime; + + private String posmerid; + + private String extra; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getChannel() { + return channel; + } + + public void setChannel(Integer channel) { + this.channel = channel; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getPluginid() { + return pluginid; + } + + public void setPluginid(String pluginid) { + this.pluginid = pluginid == null ? null : pluginid.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public String getThirdstatus() { + return thirdstatus; + } + + public void setThirdstatus(String thirdstatus) { + this.thirdstatus = thirdstatus == null ? null : thirdstatus.trim(); + } + + public String getApplicationid() { + return applicationid; + } + + public void setApplicationid(String applicationid) { + this.applicationid = applicationid == null ? null : applicationid.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getPosmerid() { + return posmerid; + } + + public void setPosmerid(String posmerid) { + this.posmerid = posmerid == null ? null : posmerid.trim(); + } + + public String getExtra() { + return extra; + } + + public void setExtra(String extra) { + this.extra = extra == null ? null : extra.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantProfit.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantProfit.java new file mode 100644 index 0000000..8e6e335 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantProfit.java @@ -0,0 +1,269 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussMerchantProfit implements Serializable { + private Integer id; + + private Integer userid; + + private String type; + + private BigDecimal price; + + private String ordernumber; + + private String merchantcode; + + private String merchantname; + + private Double consumefee; + + private Date createdt; + + private Date orderdt; + + private String status; + + private String paytypecode; + + private String paytypename; + + private String merchantlogo; + + private Integer level; + + private Integer merchantparentid; + + private String merchantparentname; + + private String merchantparentlogo; + + private String phone; + + private String username; + + private String merchantparentlevel; + + private String merchantparentphone; + + private Integer profitrate; + + private Integer agentstaffid; + + private Date recorddate; + + private String recordmonth; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public BigDecimal getPrice() { + return price; + } + + public void setPrice(BigDecimal price) { + this.price = price; + } + + public String getOrdernumber() { + return ordernumber; + } + + public void setOrdernumber(String ordernumber) { + this.ordernumber = ordernumber == null ? null : ordernumber.trim(); + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public Double getConsumefee() { + return consumefee; + } + + public void setConsumefee(Double consumefee) { + this.consumefee = consumefee; + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public Date getOrderdt() { + return orderdt; + } + + public void setOrderdt(Date orderdt) { + this.orderdt = orderdt; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public String getPaytypecode() { + return paytypecode; + } + + public void setPaytypecode(String paytypecode) { + this.paytypecode = paytypecode == null ? null : paytypecode.trim(); + } + + public String getPaytypename() { + return paytypename; + } + + public void setPaytypename(String paytypename) { + this.paytypename = paytypename == null ? null : paytypename.trim(); + } + + public String getMerchantlogo() { + return merchantlogo; + } + + public void setMerchantlogo(String merchantlogo) { + this.merchantlogo = merchantlogo == null ? null : merchantlogo.trim(); + } + + public Integer getLevel() { + return level; + } + + public void setLevel(Integer level) { + this.level = level; + } + + public Integer getMerchantparentid() { + return merchantparentid; + } + + public void setMerchantparentid(Integer merchantparentid) { + this.merchantparentid = merchantparentid; + } + + public String getMerchantparentname() { + return merchantparentname; + } + + public void setMerchantparentname(String merchantparentname) { + this.merchantparentname = merchantparentname == null ? null : merchantparentname.trim(); + } + + public String getMerchantparentlogo() { + return merchantparentlogo; + } + + public void setMerchantparentlogo(String merchantparentlogo) { + this.merchantparentlogo = merchantparentlogo == null ? null : merchantparentlogo.trim(); + } + + public String getPhone() { + return phone; + } + + public void setPhone(String phone) { + this.phone = phone == null ? null : phone.trim(); + } + + public String getUsername() { + return username; + } + + public void setUsername(String username) { + this.username = username == null ? null : username.trim(); + } + + public String getMerchantparentlevel() { + return merchantparentlevel; + } + + public void setMerchantparentlevel(String merchantparentlevel) { + this.merchantparentlevel = merchantparentlevel == null ? null : merchantparentlevel.trim(); + } + + public String getMerchantparentphone() { + return merchantparentphone; + } + + public void setMerchantparentphone(String merchantparentphone) { + this.merchantparentphone = merchantparentphone == null ? null : merchantparentphone.trim(); + } + + public Integer getProfitrate() { + return profitrate; + } + + public void setProfitrate(Integer profitrate) { + this.profitrate = profitrate; + } + + public Integer getAgentstaffid() { + return agentstaffid; + } + + public void setAgentstaffid(Integer agentstaffid) { + this.agentstaffid = agentstaffid; + } + + public Date getRecorddate() { + return recorddate; + } + + public void setRecorddate(Date recorddate) { + this.recorddate = recorddate; + } + + public String getRecordmonth() { + return recordmonth; + } + + public void setRecordmonth(String recordmonth) { + this.recordmonth = recordmonth == null ? null : recordmonth.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantQrcode.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantQrcode.java new file mode 100644 index 0000000..987c20f --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantQrcode.java @@ -0,0 +1,78 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantQrcode implements Serializable { + private Integer id; + + private String merchantcode; + + private String merchantname; + + private String qrcodeurl; + + private Date createtime; + + private Date updatetime; + + private String wechat; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public String getQrcodeurl() { + return qrcodeurl; + } + + public void setQrcodeurl(String qrcodeurl) { + this.qrcodeurl = qrcodeurl == null ? null : qrcodeurl.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getWechat() { + return wechat; + } + + public void setWechat(String wechat) { + this.wechat = wechat == null ? null : wechat.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantRate.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantRate.java new file mode 100644 index 0000000..082261d --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantRate.java @@ -0,0 +1,88 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantRate implements Serializable { + private Integer id; + + private Integer userid; + + private Integer rate; + + private Date updatetime; + + private Integer previousrate; + + private String isfixedrate; + + private Date starttime; + + private Date endtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public Integer getRate() { + return rate; + } + + public void setRate(Integer rate) { + this.rate = rate; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public Integer getPreviousrate() { + return previousrate; + } + + public void setPreviousrate(Integer previousrate) { + this.previousrate = previousrate; + } + + public String getIsfixedrate() { + return isfixedrate; + } + + public void setIsfixedrate(String isfixedrate) { + this.isfixedrate = isfixedrate == null ? null : isfixedrate.trim(); + } + + public Date getStarttime() { + return starttime; + } + + public void setStarttime(Date starttime) { + this.starttime = starttime; + } + + public Date getEndtime() { + return endtime; + } + + public void setEndtime(Date endtime) { + this.endtime = endtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantRateNew.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantRateNew.java new file mode 100644 index 0000000..e6df132 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantRateNew.java @@ -0,0 +1,98 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantRateNew implements Serializable { + private Integer id; + + private Integer channel; + + private String merchantid; + + private Integer wxrate; + + private Integer alirate; + + private Integer bankrate; + + private Integer bankratelarge; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getChannel() { + return channel; + } + + public void setChannel(Integer channel) { + this.channel = channel; + } + + public String getMerchantid() { + return merchantid; + } + + public void setMerchantid(String merchantid) { + this.merchantid = merchantid == null ? null : merchantid.trim(); + } + + public Integer getWxrate() { + return wxrate; + } + + public void setWxrate(Integer wxrate) { + this.wxrate = wxrate; + } + + public Integer getAlirate() { + return alirate; + } + + public void setAlirate(Integer alirate) { + this.alirate = alirate; + } + + public Integer getBankrate() { + return bankrate; + } + + public void setBankrate(Integer bankrate) { + this.bankrate = bankrate; + } + + public Integer getBankratelarge() { + return bankratelarge; + } + + public void setBankratelarge(Integer bankratelarge) { + this.bankratelarge = bankratelarge; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantRateNewRecord.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantRateNewRecord.java new file mode 100644 index 0000000..9faf0b1 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantRateNewRecord.java @@ -0,0 +1,128 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantRateNewRecord implements Serializable { + private Integer id; + + private Integer channel; + + private String merchantid; + + private Integer wxrate; + + private Integer alirate; + + private Integer bankrate; + + private Integer bankratelarge; + + private String status; + + private String remark; + + private Date createtime; + + private Date updatetime; + + private String operationdate; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getChannel() { + return channel; + } + + public void setChannel(Integer channel) { + this.channel = channel; + } + + public String getMerchantid() { + return merchantid; + } + + public void setMerchantid(String merchantid) { + this.merchantid = merchantid == null ? null : merchantid.trim(); + } + + public Integer getWxrate() { + return wxrate; + } + + public void setWxrate(Integer wxrate) { + this.wxrate = wxrate; + } + + public Integer getAlirate() { + return alirate; + } + + public void setAlirate(Integer alirate) { + this.alirate = alirate; + } + + public Integer getBankrate() { + return bankrate; + } + + public void setBankrate(Integer bankrate) { + this.bankrate = bankrate; + } + + public Integer getBankratelarge() { + return bankratelarge; + } + + public void setBankratelarge(Integer bankratelarge) { + this.bankratelarge = bankratelarge; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getOperationdate() { + return operationdate; + } + + public void setOperationdate(String operationdate) { + this.operationdate = operationdate == null ? null : operationdate.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantRateRecord.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantRateRecord.java new file mode 100644 index 0000000..c99f82b --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantRateRecord.java @@ -0,0 +1,48 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantRateRecord implements Serializable { + private Integer id; + + private String userid; + + private Integer rate; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getUserid() { + return userid; + } + + public void setUserid(String userid) { + this.userid = userid == null ? null : userid.trim(); + } + + public Integer getRate() { + return rate; + } + + public void setRate(Integer rate) { + this.rate = rate; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantRefundOrder.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantRefundOrder.java new file mode 100644 index 0000000..adfc17d --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantRefundOrder.java @@ -0,0 +1,229 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussMerchantRefundOrder implements Serializable { + private Integer id; + + private String merchantcode; + + private String alias; + + private String ordernumber; + + private String refundno; + + private String channelno; + + private Date paytime; + + private Date refundtime; + + private String status; + + private String ordertype; + + private String paytypecode; + + private String paytypename; + + private BigDecimal payamt; + + private String aisleswitch; + + private Date createtime; + + private String channelmercno; + + private String failmsg; + + private BigDecimal refundamt; + + private String mercrefundno; + + private String notifyurl; + + private String refundreason; + + private String mercorderno; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getAlias() { + return alias; + } + + public void setAlias(String alias) { + this.alias = alias == null ? null : alias.trim(); + } + + public String getOrdernumber() { + return ordernumber; + } + + public void setOrdernumber(String ordernumber) { + this.ordernumber = ordernumber == null ? null : ordernumber.trim(); + } + + public String getRefundno() { + return refundno; + } + + public void setRefundno(String refundno) { + this.refundno = refundno == null ? null : refundno.trim(); + } + + public String getChannelno() { + return channelno; + } + + public void setChannelno(String channelno) { + this.channelno = channelno == null ? null : channelno.trim(); + } + + public Date getPaytime() { + return paytime; + } + + public void setPaytime(Date paytime) { + this.paytime = paytime; + } + + public Date getRefundtime() { + return refundtime; + } + + public void setRefundtime(Date refundtime) { + this.refundtime = refundtime; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public String getOrdertype() { + return ordertype; + } + + public void setOrdertype(String ordertype) { + this.ordertype = ordertype == null ? null : ordertype.trim(); + } + + public String getPaytypecode() { + return paytypecode; + } + + public void setPaytypecode(String paytypecode) { + this.paytypecode = paytypecode == null ? null : paytypecode.trim(); + } + + public String getPaytypename() { + return paytypename; + } + + public void setPaytypename(String paytypename) { + this.paytypename = paytypename == null ? null : paytypename.trim(); + } + + public BigDecimal getPayamt() { + return payamt; + } + + public void setPayamt(BigDecimal payamt) { + this.payamt = payamt; + } + + public String getAisleswitch() { + return aisleswitch; + } + + public void setAisleswitch(String aisleswitch) { + this.aisleswitch = aisleswitch == null ? null : aisleswitch.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public String getChannelmercno() { + return channelmercno; + } + + public void setChannelmercno(String channelmercno) { + this.channelmercno = channelmercno == null ? null : channelmercno.trim(); + } + + public String getFailmsg() { + return failmsg; + } + + public void setFailmsg(String failmsg) { + this.failmsg = failmsg == null ? null : failmsg.trim(); + } + + public BigDecimal getRefundamt() { + return refundamt; + } + + public void setRefundamt(BigDecimal refundamt) { + this.refundamt = refundamt; + } + + public String getMercrefundno() { + return mercrefundno; + } + + public void setMercrefundno(String mercrefundno) { + this.mercrefundno = mercrefundno == null ? null : mercrefundno.trim(); + } + + public String getNotifyurl() { + return notifyurl; + } + + public void setNotifyurl(String notifyurl) { + this.notifyurl = notifyurl == null ? null : notifyurl.trim(); + } + + public String getRefundreason() { + return refundreason; + } + + public void setRefundreason(String refundreason) { + this.refundreason = refundreason == null ? null : refundreason.trim(); + } + + public String getMercorderno() { + return mercorderno; + } + + public void setMercorderno(String mercorderno) { + this.mercorderno = mercorderno == null ? null : mercorderno.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantRegistAuditRecord.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantRegistAuditRecord.java new file mode 100644 index 0000000..610bbd9 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantRegistAuditRecord.java @@ -0,0 +1,128 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantRegistAuditRecord implements Serializable { + private Integer id; + + private String merchantcode; + + private String merchantname; + + private String agentcode; + + private String agentname; + + private String creator; + + private String message; + + private String type; + + private String status; + + private String failreason; + + private Date creatdt; + + private String modifystatus; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public String getAgentcode() { + return agentcode; + } + + public void setAgentcode(String agentcode) { + this.agentcode = agentcode == null ? null : agentcode.trim(); + } + + public String getAgentname() { + return agentname; + } + + public void setAgentname(String agentname) { + this.agentname = agentname == null ? null : agentname.trim(); + } + + public String getCreator() { + return creator; + } + + public void setCreator(String creator) { + this.creator = creator == null ? null : creator.trim(); + } + + public String getMessage() { + return message; + } + + public void setMessage(String message) { + this.message = message == null ? null : message.trim(); + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public String getFailreason() { + return failreason; + } + + public void setFailreason(String failreason) { + this.failreason = failreason == null ? null : failreason.trim(); + } + + public Date getCreatdt() { + return creatdt; + } + + public void setCreatdt(Date creatdt) { + this.creatdt = creatdt; + } + + public String getModifystatus() { + return modifystatus; + } + + public void setModifystatus(String modifystatus) { + this.modifystatus = modifystatus == null ? null : modifystatus.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantRegistLog.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantRegistLog.java new file mode 100644 index 0000000..68dca70 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantRegistLog.java @@ -0,0 +1,108 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantRegistLog implements Serializable { + private Integer id; + + private String merchantcode; + + private String storeid; + + private String applystatus; + + private String message; + + private Date createdt; + + private String merchantname; + + private String merchantid; + + private String parentcode; + + private String creator; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getStoreid() { + return storeid; + } + + public void setStoreid(String storeid) { + this.storeid = storeid == null ? null : storeid.trim(); + } + + public String getApplystatus() { + return applystatus; + } + + public void setApplystatus(String applystatus) { + this.applystatus = applystatus == null ? null : applystatus.trim(); + } + + public String getMessage() { + return message; + } + + public void setMessage(String message) { + this.message = message == null ? null : message.trim(); + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public String getMerchantid() { + return merchantid; + } + + public void setMerchantid(String merchantid) { + this.merchantid = merchantid == null ? null : merchantid.trim(); + } + + public String getParentcode() { + return parentcode; + } + + public void setParentcode(String parentcode) { + this.parentcode = parentcode == null ? null : parentcode.trim(); + } + + public String getCreator() { + return creator; + } + + public void setCreator(String creator) { + this.creator = creator == null ? null : creator.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantRejectDesc.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantRejectDesc.java new file mode 100644 index 0000000..f48cbf5 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantRejectDesc.java @@ -0,0 +1,58 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantRejectDesc implements Serializable { + private Integer id; + + private String rejectname; + + private Integer sort; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getRejectname() { + return rejectname; + } + + public void setRejectname(String rejectname) { + this.rejectname = rejectname == null ? null : rejectname.trim(); + } + + public Integer getSort() { + return sort; + } + + public void setSort(Integer sort) { + this.sort = sort; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantSplitSetting.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantSplitSetting.java new file mode 100644 index 0000000..7355893 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantSplitSetting.java @@ -0,0 +1,139 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussMerchantSplitSetting implements Serializable { + private Integer id; + + private String chiemerchantcode; + + private String chiemerchantid; + + private String isdivistion; + + private String divisionmode; + + private String divimerchantcode; + + private String divimerchantid; + + private BigDecimal divamt; + + private BigDecimal divratio; + + private String ischargefee; + + private Date createtime; + + private Integer status; + + private String notifyurl; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getChiemerchantcode() { + return chiemerchantcode; + } + + public void setChiemerchantcode(String chiemerchantcode) { + this.chiemerchantcode = chiemerchantcode == null ? null : chiemerchantcode.trim(); + } + + public String getChiemerchantid() { + return chiemerchantid; + } + + public void setChiemerchantid(String chiemerchantid) { + this.chiemerchantid = chiemerchantid == null ? null : chiemerchantid.trim(); + } + + public String getIsdivistion() { + return isdivistion; + } + + public void setIsdivistion(String isdivistion) { + this.isdivistion = isdivistion == null ? null : isdivistion.trim(); + } + + public String getDivisionmode() { + return divisionmode; + } + + public void setDivisionmode(String divisionmode) { + this.divisionmode = divisionmode == null ? null : divisionmode.trim(); + } + + public String getDivimerchantcode() { + return divimerchantcode; + } + + public void setDivimerchantcode(String divimerchantcode) { + this.divimerchantcode = divimerchantcode == null ? null : divimerchantcode.trim(); + } + + public String getDivimerchantid() { + return divimerchantid; + } + + public void setDivimerchantid(String divimerchantid) { + this.divimerchantid = divimerchantid == null ? null : divimerchantid.trim(); + } + + public BigDecimal getDivamt() { + return divamt; + } + + public void setDivamt(BigDecimal divamt) { + this.divamt = divamt; + } + + public BigDecimal getDivratio() { + return divratio; + } + + public void setDivratio(BigDecimal divratio) { + this.divratio = divratio; + } + + public String getIschargefee() { + return ischargefee; + } + + public void setIschargefee(String ischargefee) { + this.ischargefee = ischargefee == null ? null : ischargefee.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public String getNotifyurl() { + return notifyurl; + } + + public void setNotifyurl(String notifyurl) { + this.notifyurl = notifyurl == null ? null : notifyurl.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantStaffConn.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantStaffConn.java new file mode 100644 index 0000000..3e40b9e --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantStaffConn.java @@ -0,0 +1,78 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantStaffConn implements Serializable { + private Integer id; + + private Integer userid; + + private String merchantcode; + + private Date createtime; + + private Date updatetime; + + private String ispushwxmessage; + + private String rolecode; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getIspushwxmessage() { + return ispushwxmessage; + } + + public void setIspushwxmessage(String ispushwxmessage) { + this.ispushwxmessage = ispushwxmessage == null ? null : ispushwxmessage.trim(); + } + + public String getRolecode() { + return rolecode; + } + + public void setRolecode(String rolecode) { + this.rolecode = rolecode == null ? null : rolecode.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantStore.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantStore.java new file mode 100644 index 0000000..e2b1aae --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantStore.java @@ -0,0 +1,468 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussMerchantStore implements Serializable { + private Integer id; + + private String merchantcode; + + private String merchantname; + + private String aliaccount; + + private String alimcc; + + private String mcc; + + private String mccname; + + private String storeid; + + private String storename; + + private String linkname; + + private String linkphone; + + private String addressno; + + private String storeaddress; + + private String leshuamerchantaddress; + + private String address; + + private String businesslicenseno; + + private Date businessstarttime; + + private Date businessendtime; + + private String businesslicensepic; + + private String storedesc; + + private String logo; + + private String creator; + + private Date createdt; + + private String openingtime; + + private String status; + + private String parentcode; + + private String email; + + private String isaccount; + + private String loginname; + + private String paymentcodeurl; + + private String storeheadpic; + + private String storeinsidepic; + + private String cashpic; + + private String productdesc; + + private Double rate; + + private String alipaysource; + + private String applymentid; + + private String alistatus; + + private String wechatstatus; + + private String leshuastatus; + + private String submchid; + + private String apptokenauth; + + private String leshuamchid; + + private String leshuausername; + + private String payecdemicswitch; + + private String ismarket; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public String getAliaccount() { + return aliaccount; + } + + public void setAliaccount(String aliaccount) { + this.aliaccount = aliaccount == null ? null : aliaccount.trim(); + } + + public String getAlimcc() { + return alimcc; + } + + public void setAlimcc(String alimcc) { + this.alimcc = alimcc == null ? null : alimcc.trim(); + } + + public String getMcc() { + return mcc; + } + + public void setMcc(String mcc) { + this.mcc = mcc == null ? null : mcc.trim(); + } + + public String getMccname() { + return mccname; + } + + public void setMccname(String mccname) { + this.mccname = mccname == null ? null : mccname.trim(); + } + + public String getStoreid() { + return storeid; + } + + public void setStoreid(String storeid) { + this.storeid = storeid == null ? null : storeid.trim(); + } + + public String getStorename() { + return storename; + } + + public void setStorename(String storename) { + this.storename = storename == null ? null : storename.trim(); + } + + public String getLinkname() { + return linkname; + } + + public void setLinkname(String linkname) { + this.linkname = linkname == null ? null : linkname.trim(); + } + + public String getLinkphone() { + return linkphone; + } + + public void setLinkphone(String linkphone) { + this.linkphone = linkphone == null ? null : linkphone.trim(); + } + + public String getAddressno() { + return addressno; + } + + public void setAddressno(String addressno) { + this.addressno = addressno == null ? null : addressno.trim(); + } + + public String getStoreaddress() { + return storeaddress; + } + + public void setStoreaddress(String storeaddress) { + this.storeaddress = storeaddress == null ? null : storeaddress.trim(); + } + + public String getLeshuamerchantaddress() { + return leshuamerchantaddress; + } + + public void setLeshuamerchantaddress(String leshuamerchantaddress) { + this.leshuamerchantaddress = leshuamerchantaddress == null ? null : leshuamerchantaddress.trim(); + } + + public String getAddress() { + return address; + } + + public void setAddress(String address) { + this.address = address == null ? null : address.trim(); + } + + public String getBusinesslicenseno() { + return businesslicenseno; + } + + public void setBusinesslicenseno(String businesslicenseno) { + this.businesslicenseno = businesslicenseno == null ? null : businesslicenseno.trim(); + } + + public Date getBusinessstarttime() { + return businessstarttime; + } + + public void setBusinessstarttime(Date businessstarttime) { + this.businessstarttime = businessstarttime; + } + + public Date getBusinessendtime() { + return businessendtime; + } + + public void setBusinessendtime(Date businessendtime) { + this.businessendtime = businessendtime; + } + + public String getBusinesslicensepic() { + return businesslicensepic; + } + + public void setBusinesslicensepic(String businesslicensepic) { + this.businesslicensepic = businesslicensepic == null ? null : businesslicensepic.trim(); + } + + public String getStoredesc() { + return storedesc; + } + + public void setStoredesc(String storedesc) { + this.storedesc = storedesc == null ? null : storedesc.trim(); + } + + public String getLogo() { + return logo; + } + + public void setLogo(String logo) { + this.logo = logo == null ? null : logo.trim(); + } + + public String getCreator() { + return creator; + } + + public void setCreator(String creator) { + this.creator = creator == null ? null : creator.trim(); + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public String getOpeningtime() { + return openingtime; + } + + public void setOpeningtime(String openingtime) { + this.openingtime = openingtime == null ? null : openingtime.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public String getParentcode() { + return parentcode; + } + + public void setParentcode(String parentcode) { + this.parentcode = parentcode == null ? null : parentcode.trim(); + } + + public String getEmail() { + return email; + } + + public void setEmail(String email) { + this.email = email == null ? null : email.trim(); + } + + public String getIsaccount() { + return isaccount; + } + + public void setIsaccount(String isaccount) { + this.isaccount = isaccount == null ? null : isaccount.trim(); + } + + public String getLoginname() { + return loginname; + } + + public void setLoginname(String loginname) { + this.loginname = loginname == null ? null : loginname.trim(); + } + + public String getPaymentcodeurl() { + return paymentcodeurl; + } + + public void setPaymentcodeurl(String paymentcodeurl) { + this.paymentcodeurl = paymentcodeurl == null ? null : paymentcodeurl.trim(); + } + + public String getStoreheadpic() { + return storeheadpic; + } + + public void setStoreheadpic(String storeheadpic) { + this.storeheadpic = storeheadpic == null ? null : storeheadpic.trim(); + } + + public String getStoreinsidepic() { + return storeinsidepic; + } + + public void setStoreinsidepic(String storeinsidepic) { + this.storeinsidepic = storeinsidepic == null ? null : storeinsidepic.trim(); + } + + public String getCashpic() { + return cashpic; + } + + public void setCashpic(String cashpic) { + this.cashpic = cashpic == null ? null : cashpic.trim(); + } + + public String getProductdesc() { + return productdesc; + } + + public void setProductdesc(String productdesc) { + this.productdesc = productdesc == null ? null : productdesc.trim(); + } + + public Double getRate() { + return rate; + } + + public void setRate(Double rate) { + this.rate = rate; + } + + public String getAlipaysource() { + return alipaysource; + } + + public void setAlipaysource(String alipaysource) { + this.alipaysource = alipaysource == null ? null : alipaysource.trim(); + } + + public String getApplymentid() { + return applymentid; + } + + public void setApplymentid(String applymentid) { + this.applymentid = applymentid == null ? null : applymentid.trim(); + } + + public String getAlistatus() { + return alistatus; + } + + public void setAlistatus(String alistatus) { + this.alistatus = alistatus == null ? null : alistatus.trim(); + } + + public String getWechatstatus() { + return wechatstatus; + } + + public void setWechatstatus(String wechatstatus) { + this.wechatstatus = wechatstatus == null ? null : wechatstatus.trim(); + } + + public String getLeshuastatus() { + return leshuastatus; + } + + public void setLeshuastatus(String leshuastatus) { + this.leshuastatus = leshuastatus == null ? null : leshuastatus.trim(); + } + + public String getSubmchid() { + return submchid; + } + + public void setSubmchid(String submchid) { + this.submchid = submchid == null ? null : submchid.trim(); + } + + public String getApptokenauth() { + return apptokenauth; + } + + public void setApptokenauth(String apptokenauth) { + this.apptokenauth = apptokenauth == null ? null : apptokenauth.trim(); + } + + public String getLeshuamchid() { + return leshuamchid; + } + + public void setLeshuamchid(String leshuamchid) { + this.leshuamchid = leshuamchid == null ? null : leshuamchid.trim(); + } + + public String getLeshuausername() { + return leshuausername; + } + + public void setLeshuausername(String leshuausername) { + this.leshuausername = leshuausername == null ? null : leshuausername.trim(); + } + + public String getPayecdemicswitch() { + return payecdemicswitch; + } + + public void setPayecdemicswitch(String payecdemicswitch) { + this.payecdemicswitch = payecdemicswitch == null ? null : payecdemicswitch.trim(); + } + + public String getIsmarket() { + return ismarket; + } + + public void setIsmarket(String ismarket) { + this.ismarket = ismarket == null ? null : ismarket.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantTransfer.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantTransfer.java new file mode 100644 index 0000000..bca06d8 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantTransfer.java @@ -0,0 +1,129 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussMerchantTransfer implements Serializable { + private Integer id; + + private String merchantcode; + + private String alias; + + private String channelno; + + private Integer channelid; + + private BigDecimal amount; + + private Date createdt; + + private String orderno; + + private String content; + + private Date transtime; + + private String transno; + + private String remark; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getAlias() { + return alias; + } + + public void setAlias(String alias) { + this.alias = alias == null ? null : alias.trim(); + } + + public String getChannelno() { + return channelno; + } + + public void setChannelno(String channelno) { + this.channelno = channelno == null ? null : channelno.trim(); + } + + public Integer getChannelid() { + return channelid; + } + + public void setChannelid(Integer channelid) { + this.channelid = channelid; + } + + public BigDecimal getAmount() { + return amount; + } + + public void setAmount(BigDecimal amount) { + this.amount = amount; + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public String getOrderno() { + return orderno; + } + + public void setOrderno(String orderno) { + this.orderno = orderno == null ? null : orderno.trim(); + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content == null ? null : content.trim(); + } + + public Date getTranstime() { + return transtime; + } + + public void setTranstime(Date transtime) { + this.transtime = transtime; + } + + public String getTransno() { + return transno; + } + + public void setTransno(String transno) { + this.transno = transno == null ? null : transno.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantTransferCash.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantTransferCash.java new file mode 100644 index 0000000..7df1361 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussMerchantTransferCash.java @@ -0,0 +1,99 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussMerchantTransferCash implements Serializable { + private Integer id; + + private BigDecimal cashamt; + + private Integer userid; + + private String username; + + private String status; + + private Date cashtime; + + private String cashno; + + private Date createtime; + + private String remark; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public BigDecimal getCashamt() { + return cashamt; + } + + public void setCashamt(BigDecimal cashamt) { + this.cashamt = cashamt; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getUsername() { + return username; + } + + public void setUsername(String username) { + this.username = username == null ? null : username.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public Date getCashtime() { + return cashtime; + } + + public void setCashtime(Date cashtime) { + this.cashtime = cashtime; + } + + public String getCashno() { + return cashno; + } + + public void setCashno(String cashno) { + this.cashno = cashno == null ? null : cashno.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussNewArea.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussNewArea.java new file mode 100644 index 0000000..e3a9480 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussNewArea.java @@ -0,0 +1,107 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussNewArea implements Serializable { + private Long id; + + private Long parentid; + + private String name; + + private String shortname; + + private Float longitude; + + private Float latitude; + + private Byte level; + + private Byte sort; + + private Byte status; + + private Byte open; + + private static final long serialVersionUID = 1L; + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public Long getParentid() { + return parentid; + } + + public void setParentid(Long parentid) { + this.parentid = parentid; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getShortname() { + return shortname; + } + + public void setShortname(String shortname) { + this.shortname = shortname == null ? null : shortname.trim(); + } + + public Float getLongitude() { + return longitude; + } + + public void setLongitude(Float longitude) { + this.longitude = longitude; + } + + public Float getLatitude() { + return latitude; + } + + public void setLatitude(Float latitude) { + this.latitude = latitude; + } + + public Byte getLevel() { + return level; + } + + public void setLevel(Byte level) { + this.level = level; + } + + public Byte getSort() { + return sort; + } + + public void setSort(Byte sort) { + this.sort = sort; + } + + public Byte getStatus() { + return status; + } + + public void setStatus(Byte status) { + this.status = status; + } + + public Byte getOpen() { + return open; + } + + public void setOpen(Byte open) { + this.open = open; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussNewMccInfo.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussNewMccInfo.java new file mode 100644 index 0000000..edb052e --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussNewMccInfo.java @@ -0,0 +1,137 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussNewMccInfo implements Serializable { + private Integer fId; + + private String fMccCode; + + private String fMccTxt; + + private String fFatherCode; + + private String fGrandpaCode; + + private String fFatherTxt; + + private String fGrandpaTxt; + + private Integer fCommission; + + private Integer fMaxCommissionOneTransaction; + + private Byte fMccType; + + private String fMccTypeTxt; + + private Integer fDailyLimit; + + private Integer fNoPinFlag; + + private static final long serialVersionUID = 1L; + + public Integer getfId() { + return fId; + } + + public void setfId(Integer fId) { + this.fId = fId; + } + + public String getfMccCode() { + return fMccCode; + } + + public void setfMccCode(String fMccCode) { + this.fMccCode = fMccCode == null ? null : fMccCode.trim(); + } + + public String getfMccTxt() { + return fMccTxt; + } + + public void setfMccTxt(String fMccTxt) { + this.fMccTxt = fMccTxt == null ? null : fMccTxt.trim(); + } + + public String getfFatherCode() { + return fFatherCode; + } + + public void setfFatherCode(String fFatherCode) { + this.fFatherCode = fFatherCode == null ? null : fFatherCode.trim(); + } + + public String getfGrandpaCode() { + return fGrandpaCode; + } + + public void setfGrandpaCode(String fGrandpaCode) { + this.fGrandpaCode = fGrandpaCode == null ? null : fGrandpaCode.trim(); + } + + public String getfFatherTxt() { + return fFatherTxt; + } + + public void setfFatherTxt(String fFatherTxt) { + this.fFatherTxt = fFatherTxt == null ? null : fFatherTxt.trim(); + } + + public String getfGrandpaTxt() { + return fGrandpaTxt; + } + + public void setfGrandpaTxt(String fGrandpaTxt) { + this.fGrandpaTxt = fGrandpaTxt == null ? null : fGrandpaTxt.trim(); + } + + public Integer getfCommission() { + return fCommission; + } + + public void setfCommission(Integer fCommission) { + this.fCommission = fCommission; + } + + public Integer getfMaxCommissionOneTransaction() { + return fMaxCommissionOneTransaction; + } + + public void setfMaxCommissionOneTransaction(Integer fMaxCommissionOneTransaction) { + this.fMaxCommissionOneTransaction = fMaxCommissionOneTransaction; + } + + public Byte getfMccType() { + return fMccType; + } + + public void setfMccType(Byte fMccType) { + this.fMccType = fMccType; + } + + public String getfMccTypeTxt() { + return fMccTypeTxt; + } + + public void setfMccTypeTxt(String fMccTypeTxt) { + this.fMccTypeTxt = fMccTypeTxt == null ? null : fMccTypeTxt.trim(); + } + + public Integer getfDailyLimit() { + return fDailyLimit; + } + + public void setfDailyLimit(Integer fDailyLimit) { + this.fDailyLimit = fDailyLimit; + } + + public Integer getfNoPinFlag() { + return fNoPinFlag; + } + + public void setfNoPinFlag(Integer fNoPinFlag) { + this.fNoPinFlag = fNoPinFlag; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussNotice.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussNotice.java new file mode 100644 index 0000000..ff87a94 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussNotice.java @@ -0,0 +1,158 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussNotice implements Serializable { + private Integer id; + + private String userid; + + private String username; + + private Integer typefirst; + + private Integer typesecond; + + private String title; + + private String desc; + + private String url; + + private Date createdt; + + private String noticecode; + + private String ordernumber; + + private Integer isdeal; + + private Integer isapply; + + private String uniquekey; + + private String conrtent; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getUserid() { + return userid; + } + + public void setUserid(String userid) { + this.userid = userid == null ? null : userid.trim(); + } + + public String getUsername() { + return username; + } + + public void setUsername(String username) { + this.username = username == null ? null : username.trim(); + } + + public Integer getTypefirst() { + return typefirst; + } + + public void setTypefirst(Integer typefirst) { + this.typefirst = typefirst; + } + + public Integer getTypesecond() { + return typesecond; + } + + public void setTypesecond(Integer typesecond) { + this.typesecond = typesecond; + } + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title == null ? null : title.trim(); + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc == null ? null : desc.trim(); + } + + public String getUrl() { + return url; + } + + public void setUrl(String url) { + this.url = url == null ? null : url.trim(); + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public String getNoticecode() { + return noticecode; + } + + public void setNoticecode(String noticecode) { + this.noticecode = noticecode == null ? null : noticecode.trim(); + } + + public String getOrdernumber() { + return ordernumber; + } + + public void setOrdernumber(String ordernumber) { + this.ordernumber = ordernumber == null ? null : ordernumber.trim(); + } + + public Integer getIsdeal() { + return isdeal; + } + + public void setIsdeal(Integer isdeal) { + this.isdeal = isdeal; + } + + public Integer getIsapply() { + return isapply; + } + + public void setIsapply(Integer isapply) { + this.isapply = isapply; + } + + public String getUniquekey() { + return uniquekey; + } + + public void setUniquekey(String uniquekey) { + this.uniquekey = uniquekey == null ? null : uniquekey.trim(); + } + + public String getConrtent() { + return conrtent; + } + + public void setConrtent(String conrtent) { + this.conrtent = conrtent == null ? null : conrtent.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussNoticeReadRecord.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussNoticeReadRecord.java new file mode 100644 index 0000000..faeb713 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussNoticeReadRecord.java @@ -0,0 +1,58 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussNoticeReadRecord implements Serializable { + private Integer id; + + private String userid; + + private String type; + + private Integer noticeid; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getUserid() { + return userid; + } + + public void setUserid(String userid) { + this.userid = userid == null ? null : userid.trim(); + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public Integer getNoticeid() { + return noticeid; + } + + public void setNoticeid(Integer noticeid) { + this.noticeid = noticeid; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussNoticeTemplate.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussNoticeTemplate.java new file mode 100644 index 0000000..92f3250 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussNoticeTemplate.java @@ -0,0 +1,58 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussNoticeTemplate implements Serializable { + private Integer id; + + private String type; + + private String variable; + + private String content; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public String getVariable() { + return variable; + } + + public void setVariable(String variable) { + this.variable = variable == null ? null : variable.trim(); + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content == null ? null : content.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussNotification.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussNotification.java new file mode 100644 index 0000000..33c1131 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussNotification.java @@ -0,0 +1,58 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussNotification implements Serializable { + private Integer id; + + private String title; + + private String content; + + private String status; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title == null ? null : title.trim(); + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content == null ? null : content.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussOfficialActivity.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussOfficialActivity.java new file mode 100644 index 0000000..18ec30e --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussOfficialActivity.java @@ -0,0 +1,198 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussOfficialActivity implements Serializable { + private Integer id; + + private String officname; + + private String offictitle; + + private String officcontent; + + private String officimgurl; + + private String toimgurl; + + private Date starttime; + + private Date endtime; + + private String status; + + private String remark; + + private Date createtime; + + private String createby; + + private Date updatetime; + + private String officdetailimgurl; + + private String activitygroupno; + + private String groupby; + + private String acttype; + + private String roletype; + + private String officrule; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getOfficname() { + return officname; + } + + public void setOfficname(String officname) { + this.officname = officname == null ? null : officname.trim(); + } + + public String getOffictitle() { + return offictitle; + } + + public void setOffictitle(String offictitle) { + this.offictitle = offictitle == null ? null : offictitle.trim(); + } + + public String getOfficcontent() { + return officcontent; + } + + public void setOfficcontent(String officcontent) { + this.officcontent = officcontent == null ? null : officcontent.trim(); + } + + public String getOfficimgurl() { + return officimgurl; + } + + public void setOfficimgurl(String officimgurl) { + this.officimgurl = officimgurl == null ? null : officimgurl.trim(); + } + + public String getToimgurl() { + return toimgurl; + } + + public void setToimgurl(String toimgurl) { + this.toimgurl = toimgurl == null ? null : toimgurl.trim(); + } + + public Date getStarttime() { + return starttime; + } + + public void setStarttime(Date starttime) { + this.starttime = starttime; + } + + public Date getEndtime() { + return endtime; + } + + public void setEndtime(Date endtime) { + this.endtime = endtime; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public String getCreateby() { + return createby; + } + + public void setCreateby(String createby) { + this.createby = createby == null ? null : createby.trim(); + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getOfficdetailimgurl() { + return officdetailimgurl; + } + + public void setOfficdetailimgurl(String officdetailimgurl) { + this.officdetailimgurl = officdetailimgurl == null ? null : officdetailimgurl.trim(); + } + + public String getActivitygroupno() { + return activitygroupno; + } + + public void setActivitygroupno(String activitygroupno) { + this.activitygroupno = activitygroupno == null ? null : activitygroupno.trim(); + } + + public String getGroupby() { + return groupby; + } + + public void setGroupby(String groupby) { + this.groupby = groupby == null ? null : groupby.trim(); + } + + public String getActtype() { + return acttype; + } + + public void setActtype(String acttype) { + this.acttype = acttype == null ? null : acttype.trim(); + } + + public String getRoletype() { + return roletype; + } + + public void setRoletype(String roletype) { + this.roletype = roletype == null ? null : roletype.trim(); + } + + public String getOfficrule() { + return officrule; + } + + public void setOfficrule(String officrule) { + this.officrule = officrule == null ? null : officrule.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussOfficialGoods.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussOfficialGoods.java new file mode 100644 index 0000000..91bd83a --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussOfficialGoods.java @@ -0,0 +1,129 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussOfficialGoods implements Serializable { + private Integer id; + + private String goodname; + + private BigDecimal goodprice; + + private String status; + + private String toimgurl; + + private String imgurl; + + private Date createtime; + + private Integer ispostage; + + private BigDecimal postagefee; + + private Integer deductrule; + + private BigDecimal deductvalue; + + private String gooddesc; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getGoodname() { + return goodname; + } + + public void setGoodname(String goodname) { + this.goodname = goodname == null ? null : goodname.trim(); + } + + public BigDecimal getGoodprice() { + return goodprice; + } + + public void setGoodprice(BigDecimal goodprice) { + this.goodprice = goodprice; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public String getToimgurl() { + return toimgurl; + } + + public void setToimgurl(String toimgurl) { + this.toimgurl = toimgurl == null ? null : toimgurl.trim(); + } + + public String getImgurl() { + return imgurl; + } + + public void setImgurl(String imgurl) { + this.imgurl = imgurl == null ? null : imgurl.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Integer getIspostage() { + return ispostage; + } + + public void setIspostage(Integer ispostage) { + this.ispostage = ispostage; + } + + public BigDecimal getPostagefee() { + return postagefee; + } + + public void setPostagefee(BigDecimal postagefee) { + this.postagefee = postagefee; + } + + public Integer getDeductrule() { + return deductrule; + } + + public void setDeductrule(Integer deductrule) { + this.deductrule = deductrule; + } + + public BigDecimal getDeductvalue() { + return deductvalue; + } + + public void setDeductvalue(BigDecimal deductvalue) { + this.deductvalue = deductvalue; + } + + public String getGooddesc() { + return gooddesc; + } + + public void setGooddesc(String gooddesc) { + this.gooddesc = gooddesc == null ? null : gooddesc.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussOfficialGoodsExchange.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussOfficialGoodsExchange.java new file mode 100644 index 0000000..4ecaf2c --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussOfficialGoodsExchange.java @@ -0,0 +1,149 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussOfficialGoodsExchange implements Serializable { + private Integer id; + + private Integer userid; + + private Integer goodid; + + private Date createtime; + + private String address; + + private String phone; + + private String username; + + private BigDecimal price; + + private String name; + + private Integer status; + + private String ordernumber; + + private String expressno; + + private Integer deliverystatus; + + private Date deliverytime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public Integer getGoodid() { + return goodid; + } + + public void setGoodid(Integer goodid) { + this.goodid = goodid; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public String getAddress() { + return address; + } + + public void setAddress(String address) { + this.address = address == null ? null : address.trim(); + } + + public String getPhone() { + return phone; + } + + public void setPhone(String phone) { + this.phone = phone == null ? null : phone.trim(); + } + + public String getUsername() { + return username; + } + + public void setUsername(String username) { + this.username = username == null ? null : username.trim(); + } + + public BigDecimal getPrice() { + return price; + } + + public void setPrice(BigDecimal price) { + this.price = price; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public String getOrdernumber() { + return ordernumber; + } + + public void setOrdernumber(String ordernumber) { + this.ordernumber = ordernumber == null ? null : ordernumber.trim(); + } + + public String getExpressno() { + return expressno; + } + + public void setExpressno(String expressno) { + this.expressno = expressno == null ? null : expressno.trim(); + } + + public Integer getDeliverystatus() { + return deliverystatus; + } + + public void setDeliverystatus(Integer deliverystatus) { + this.deliverystatus = deliverystatus; + } + + public Date getDeliverytime() { + return deliverytime; + } + + public void setDeliverytime(Date deliverytime) { + this.deliverytime = deliverytime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussOpenAccountConfig.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussOpenAccountConfig.java new file mode 100644 index 0000000..6d72d3d --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussOpenAccountConfig.java @@ -0,0 +1,129 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussOpenAccountConfig implements Serializable { + private Integer id; + + private String rolecode; + + private String type; + + private String provincecode; + + private String citycode; + + private String areacode; + + private String provincename; + + private String cityname; + + private String areaname; + + private Integer level; + + private BigDecimal rewardamt; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getRolecode() { + return rolecode; + } + + public void setRolecode(String rolecode) { + this.rolecode = rolecode == null ? null : rolecode.trim(); + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public String getProvincecode() { + return provincecode; + } + + public void setProvincecode(String provincecode) { + this.provincecode = provincecode == null ? null : provincecode.trim(); + } + + public String getCitycode() { + return citycode; + } + + public void setCitycode(String citycode) { + this.citycode = citycode == null ? null : citycode.trim(); + } + + public String getAreacode() { + return areacode; + } + + public void setAreacode(String areacode) { + this.areacode = areacode == null ? null : areacode.trim(); + } + + public String getProvincename() { + return provincename; + } + + public void setProvincename(String provincename) { + this.provincename = provincename == null ? null : provincename.trim(); + } + + public String getCityname() { + return cityname; + } + + public void setCityname(String cityname) { + this.cityname = cityname == null ? null : cityname.trim(); + } + + public String getAreaname() { + return areaname; + } + + public void setAreaname(String areaname) { + this.areaname = areaname == null ? null : areaname.trim(); + } + + public Integer getLevel() { + return level; + } + + public void setLevel(Integer level) { + this.level = level; + } + + public BigDecimal getRewardamt() { + return rewardamt; + } + + public void setRewardamt(BigDecimal rewardamt) { + this.rewardamt = rewardamt; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussOpenAccountRecord.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussOpenAccountRecord.java new file mode 100644 index 0000000..7e218ca --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussOpenAccountRecord.java @@ -0,0 +1,169 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussOpenAccountRecord implements Serializable { + private Integer id; + + private Integer userid; + + private String merchantname; + + private String ordernumber; + + private BigDecimal orderamt; + + private String goodcode; + + private String goodname; + + private String type; + + private BigDecimal rewardamt; + + private String status; + + private Integer rewarduserid; + + private String areacode; + + private String areaname; + + private Date createtime; + + private Date createdate; + + private String rolecode; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public String getOrdernumber() { + return ordernumber; + } + + public void setOrdernumber(String ordernumber) { + this.ordernumber = ordernumber == null ? null : ordernumber.trim(); + } + + public BigDecimal getOrderamt() { + return orderamt; + } + + public void setOrderamt(BigDecimal orderamt) { + this.orderamt = orderamt; + } + + public String getGoodcode() { + return goodcode; + } + + public void setGoodcode(String goodcode) { + this.goodcode = goodcode == null ? null : goodcode.trim(); + } + + public String getGoodname() { + return goodname; + } + + public void setGoodname(String goodname) { + this.goodname = goodname == null ? null : goodname.trim(); + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public BigDecimal getRewardamt() { + return rewardamt; + } + + public void setRewardamt(BigDecimal rewardamt) { + this.rewardamt = rewardamt; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public Integer getRewarduserid() { + return rewarduserid; + } + + public void setRewarduserid(Integer rewarduserid) { + this.rewarduserid = rewarduserid; + } + + public String getAreacode() { + return areacode; + } + + public void setAreacode(String areacode) { + this.areacode = areacode == null ? null : areacode.trim(); + } + + public String getAreaname() { + return areaname; + } + + public void setAreaname(String areaname) { + this.areaname = areaname == null ? null : areaname.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getCreatedate() { + return createdate; + } + + public void setCreatedate(Date createdate) { + this.createdate = createdate; + } + + public String getRolecode() { + return rolecode; + } + + public void setRolecode(String rolecode) { + this.rolecode = rolecode == null ? null : rolecode.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussOperationRecord.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussOperationRecord.java new file mode 100644 index 0000000..c20588f --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussOperationRecord.java @@ -0,0 +1,88 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussOperationRecord implements Serializable { + private Integer id; + + private String operator; + + private String dictvalue; + + private Integer userid; + + private String remark; + + private Date createtime; + + private String ip; + + private String extension; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getOperator() { + return operator; + } + + public void setOperator(String operator) { + this.operator = operator == null ? null : operator.trim(); + } + + public String getDictvalue() { + return dictvalue; + } + + public void setDictvalue(String dictvalue) { + this.dictvalue = dictvalue == null ? null : dictvalue.trim(); + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public String getIp() { + return ip; + } + + public void setIp(String ip) { + this.ip = ip == null ? null : ip.trim(); + } + + public String getExtension() { + return extension; + } + + public void setExtension(String extension) { + this.extension = extension == null ? null : extension.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussPayAreaRyx.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussPayAreaRyx.java new file mode 100644 index 0000000..86fc6fb --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussPayAreaRyx.java @@ -0,0 +1,77 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussPayAreaRyx implements Serializable { + private Integer id; + + private String provincecode; + + private String province; + + private String citycode; + + private String city; + + private String areacode; + + private String area; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getProvincecode() { + return provincecode; + } + + public void setProvincecode(String provincecode) { + this.provincecode = provincecode == null ? null : provincecode.trim(); + } + + public String getProvince() { + return province; + } + + public void setProvince(String province) { + this.province = province == null ? null : province.trim(); + } + + public String getCitycode() { + return citycode; + } + + public void setCitycode(String citycode) { + this.citycode = citycode == null ? null : citycode.trim(); + } + + public String getCity() { + return city; + } + + public void setCity(String city) { + this.city = city == null ? null : city.trim(); + } + + public String getAreacode() { + return areacode; + } + + public void setAreacode(String areacode) { + this.areacode = areacode == null ? null : areacode.trim(); + } + + public String getArea() { + return area; + } + + public void setArea(String area) { + this.area = area == null ? null : area.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussPhoneConfig.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussPhoneConfig.java new file mode 100644 index 0000000..99936ec --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussPhoneConfig.java @@ -0,0 +1,48 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussPhoneConfig implements Serializable { + private Integer id; + + private String phone; + + private String name; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getPhone() { + return phone; + } + + public void setPhone(String phone) { + this.phone = phone == null ? null : phone.trim(); + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussPhoneValidateCode.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussPhoneValidateCode.java new file mode 100644 index 0000000..0298871 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussPhoneValidateCode.java @@ -0,0 +1,78 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussPhoneValidateCode implements Serializable { + private Integer id; + + private String phone; + + private String code; + + private Date senddt; + + private String status; + + private Boolean attempt; + + private String remark; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getPhone() { + return phone; + } + + public void setPhone(String phone) { + this.phone = phone == null ? null : phone.trim(); + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public Date getSenddt() { + return senddt; + } + + public void setSenddt(Date senddt) { + this.senddt = senddt; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public Boolean getAttempt() { + return attempt; + } + + public void setAttempt(Boolean attempt) { + this.attempt = attempt; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussPlatformData.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussPlatformData.java new file mode 100644 index 0000000..ff1746e --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussPlatformData.java @@ -0,0 +1,239 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussPlatformData implements Serializable { + private Integer id; + + private BigDecimal transamt; + + private BigDecimal aliamt; + + private BigDecimal wxamt; + + private BigDecimal ysfamt; + + private Integer transnum; + + private Integer alinum; + + private Integer wxnum; + + private Integer ysfnum; + + private BigDecimal refundamt; + + private BigDecimal alirefundamt; + + private BigDecimal wxrefundamt; + + private BigDecimal ysfrefundamt; + + private Integer storenum; + + private Integer membernum; + + private Integer promoternum; + + private BigDecimal profitamt; + + private BigDecimal shareamt; + + private BigDecimal fansamt; + + private BigDecimal actualamt; + + private String operatdate; + + private Date createtime; + + private String operatemonth; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public BigDecimal getTransamt() { + return transamt; + } + + public void setTransamt(BigDecimal transamt) { + this.transamt = transamt; + } + + public BigDecimal getAliamt() { + return aliamt; + } + + public void setAliamt(BigDecimal aliamt) { + this.aliamt = aliamt; + } + + public BigDecimal getWxamt() { + return wxamt; + } + + public void setWxamt(BigDecimal wxamt) { + this.wxamt = wxamt; + } + + public BigDecimal getYsfamt() { + return ysfamt; + } + + public void setYsfamt(BigDecimal ysfamt) { + this.ysfamt = ysfamt; + } + + public Integer getTransnum() { + return transnum; + } + + public void setTransnum(Integer transnum) { + this.transnum = transnum; + } + + public Integer getAlinum() { + return alinum; + } + + public void setAlinum(Integer alinum) { + this.alinum = alinum; + } + + public Integer getWxnum() { + return wxnum; + } + + public void setWxnum(Integer wxnum) { + this.wxnum = wxnum; + } + + public Integer getYsfnum() { + return ysfnum; + } + + public void setYsfnum(Integer ysfnum) { + this.ysfnum = ysfnum; + } + + public BigDecimal getRefundamt() { + return refundamt; + } + + public void setRefundamt(BigDecimal refundamt) { + this.refundamt = refundamt; + } + + public BigDecimal getAlirefundamt() { + return alirefundamt; + } + + public void setAlirefundamt(BigDecimal alirefundamt) { + this.alirefundamt = alirefundamt; + } + + public BigDecimal getWxrefundamt() { + return wxrefundamt; + } + + public void setWxrefundamt(BigDecimal wxrefundamt) { + this.wxrefundamt = wxrefundamt; + } + + public BigDecimal getYsfrefundamt() { + return ysfrefundamt; + } + + public void setYsfrefundamt(BigDecimal ysfrefundamt) { + this.ysfrefundamt = ysfrefundamt; + } + + public Integer getStorenum() { + return storenum; + } + + public void setStorenum(Integer storenum) { + this.storenum = storenum; + } + + public Integer getMembernum() { + return membernum; + } + + public void setMembernum(Integer membernum) { + this.membernum = membernum; + } + + public Integer getPromoternum() { + return promoternum; + } + + public void setPromoternum(Integer promoternum) { + this.promoternum = promoternum; + } + + public BigDecimal getProfitamt() { + return profitamt; + } + + public void setProfitamt(BigDecimal profitamt) { + this.profitamt = profitamt; + } + + public BigDecimal getShareamt() { + return shareamt; + } + + public void setShareamt(BigDecimal shareamt) { + this.shareamt = shareamt; + } + + public BigDecimal getFansamt() { + return fansamt; + } + + public void setFansamt(BigDecimal fansamt) { + this.fansamt = fansamt; + } + + public BigDecimal getActualamt() { + return actualamt; + } + + public void setActualamt(BigDecimal actualamt) { + this.actualamt = actualamt; + } + + public String getOperatdate() { + return operatdate; + } + + public void setOperatdate(String operatdate) { + this.operatdate = operatdate == null ? null : operatdate.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public String getOperatemonth() { + return operatemonth; + } + + public void setOperatemonth(String operatemonth) { + this.operatemonth = operatemonth == null ? null : operatemonth.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussPostageConfig.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussPostageConfig.java new file mode 100644 index 0000000..1702f5f --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussPostageConfig.java @@ -0,0 +1,99 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussPostageConfig implements Serializable { + private Integer id; + + private String areacode; + + private String areaname; + + private String arealevel; + + private BigDecimal firstweight; + + private BigDecimal nextweight; + + private String remark; + + private Date createtime; + + private String status; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getAreacode() { + return areacode; + } + + public void setAreacode(String areacode) { + this.areacode = areacode == null ? null : areacode.trim(); + } + + public String getAreaname() { + return areaname; + } + + public void setAreaname(String areaname) { + this.areaname = areaname == null ? null : areaname.trim(); + } + + public String getArealevel() { + return arealevel; + } + + public void setArealevel(String arealevel) { + this.arealevel = arealevel == null ? null : arealevel.trim(); + } + + public BigDecimal getFirstweight() { + return firstweight; + } + + public void setFirstweight(BigDecimal firstweight) { + this.firstweight = firstweight; + } + + public BigDecimal getNextweight() { + return nextweight; + } + + public void setNextweight(BigDecimal nextweight) { + this.nextweight = nextweight; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussProvince.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussProvince.java new file mode 100644 index 0000000..5a913ad --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussProvince.java @@ -0,0 +1,47 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussProvince implements Serializable { + private Integer fProvinceNo; + + private String fProvinceName; + + private String fAliasp; + + private Integer fProvinceCupsNo; + + private static final long serialVersionUID = 1L; + + public Integer getfProvinceNo() { + return fProvinceNo; + } + + public void setfProvinceNo(Integer fProvinceNo) { + this.fProvinceNo = fProvinceNo; + } + + public String getfProvinceName() { + return fProvinceName; + } + + public void setfProvinceName(String fProvinceName) { + this.fProvinceName = fProvinceName == null ? null : fProvinceName.trim(); + } + + public String getfAliasp() { + return fAliasp; + } + + public void setfAliasp(String fAliasp) { + this.fAliasp = fAliasp == null ? null : fAliasp.trim(); + } + + public Integer getfProvinceCupsNo() { + return fProvinceCupsNo; + } + + public void setfProvinceCupsNo(Integer fProvinceCupsNo) { + this.fProvinceCupsNo = fProvinceCupsNo; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussPushAll.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussPushAll.java new file mode 100644 index 0000000..f97d778 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussPushAll.java @@ -0,0 +1,58 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussPushAll implements Serializable { + private Integer id; + + private String title; + + private String content; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title == null ? null : title.trim(); + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content == null ? null : content.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussQrCode.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussQrCode.java new file mode 100644 index 0000000..4aca75d --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussQrCode.java @@ -0,0 +1,128 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussQrCode implements Serializable { + private Integer id; + + private String qrno; + + private String orderno; + + private String buymercname; + + private String buymercid; + + private String actmercname; + + private String actmercid; + + private String status; + + private Date createtime; + + private String createby; + + private String delflag; + + private String remarks; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getQrno() { + return qrno; + } + + public void setQrno(String qrno) { + this.qrno = qrno == null ? null : qrno.trim(); + } + + public String getOrderno() { + return orderno; + } + + public void setOrderno(String orderno) { + this.orderno = orderno == null ? null : orderno.trim(); + } + + public String getBuymercname() { + return buymercname; + } + + public void setBuymercname(String buymercname) { + this.buymercname = buymercname == null ? null : buymercname.trim(); + } + + public String getBuymercid() { + return buymercid; + } + + public void setBuymercid(String buymercid) { + this.buymercid = buymercid == null ? null : buymercid.trim(); + } + + public String getActmercname() { + return actmercname; + } + + public void setActmercname(String actmercname) { + this.actmercname = actmercname == null ? null : actmercname.trim(); + } + + public String getActmercid() { + return actmercid; + } + + public void setActmercid(String actmercid) { + this.actmercid = actmercid == null ? null : actmercid.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public String getCreateby() { + return createby; + } + + public void setCreateby(String createby) { + this.createby = createby == null ? null : createby.trim(); + } + + public String getDelflag() { + return delflag; + } + + public void setDelflag(String delflag) { + this.delflag = delflag == null ? null : delflag.trim(); + } + + public String getRemarks() { + return remarks; + } + + public void setRemarks(String remarks) { + this.remarks = remarks == null ? null : remarks.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussQuestionsAnswers.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussQuestionsAnswers.java new file mode 100644 index 0000000..017c93d --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussQuestionsAnswers.java @@ -0,0 +1,68 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussQuestionsAnswers implements Serializable { + private Integer id; + + private String question; + + private String answer; + + private Date createdt; + + private Integer seq; + + private Integer status; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getQuestion() { + return question; + } + + public void setQuestion(String question) { + this.question = question == null ? null : question.trim(); + } + + public String getAnswer() { + return answer; + } + + public void setAnswer(String answer) { + this.answer = answer == null ? null : answer.trim(); + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public Integer getSeq() { + return seq; + } + + public void setSeq(Integer seq) { + this.seq = seq; + } + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussQueueData.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussQueueData.java new file mode 100644 index 0000000..1abf9fa --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussQueueData.java @@ -0,0 +1,17 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussQueueData implements Serializable { + private String id; + + private static final long serialVersionUID = 1L; + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id == null ? null : id.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRealFans.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRealFans.java new file mode 100644 index 0000000..3edc883 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRealFans.java @@ -0,0 +1,98 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussRealFans implements Serializable { + private Integer id; + + private String nickname; + + private String logo; + + private String phone; + + private String soleid; + + private String aliconsum; + + private String wechatconsum; + + private String enablemerchantcode; + + private Date enabletime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getNickname() { + return nickname; + } + + public void setNickname(String nickname) { + this.nickname = nickname == null ? null : nickname.trim(); + } + + public String getLogo() { + return logo; + } + + public void setLogo(String logo) { + this.logo = logo == null ? null : logo.trim(); + } + + public String getPhone() { + return phone; + } + + public void setPhone(String phone) { + this.phone = phone == null ? null : phone.trim(); + } + + public String getSoleid() { + return soleid; + } + + public void setSoleid(String soleid) { + this.soleid = soleid == null ? null : soleid.trim(); + } + + public String getAliconsum() { + return aliconsum; + } + + public void setAliconsum(String aliconsum) { + this.aliconsum = aliconsum == null ? null : aliconsum.trim(); + } + + public String getWechatconsum() { + return wechatconsum; + } + + public void setWechatconsum(String wechatconsum) { + this.wechatconsum = wechatconsum == null ? null : wechatconsum.trim(); + } + + public String getEnablemerchantcode() { + return enablemerchantcode; + } + + public void setEnablemerchantcode(String enablemerchantcode) { + this.enablemerchantcode = enablemerchantcode == null ? null : enablemerchantcode.trim(); + } + + public Date getEnabletime() { + return enabletime; + } + + public void setEnabletime(Date enabletime) { + this.enabletime = enabletime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRegionCodeLs.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRegionCodeLs.java new file mode 100644 index 0000000..69ec179 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRegionCodeLs.java @@ -0,0 +1,77 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussRegionCodeLs implements Serializable { + private Integer id; + + private String province; + + private String provincecode; + + private String city; + + private String citycode; + + private String area; + + private String areacode; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getProvince() { + return province; + } + + public void setProvince(String province) { + this.province = province == null ? null : province.trim(); + } + + public String getProvincecode() { + return provincecode; + } + + public void setProvincecode(String provincecode) { + this.provincecode = provincecode == null ? null : provincecode.trim(); + } + + public String getCity() { + return city; + } + + public void setCity(String city) { + this.city = city == null ? null : city.trim(); + } + + public String getCitycode() { + return citycode; + } + + public void setCitycode(String citycode) { + this.citycode = citycode == null ? null : citycode.trim(); + } + + public String getArea() { + return area; + } + + public void setArea(String area) { + this.area = area == null ? null : area.trim(); + } + + public String getAreacode() { + return areacode; + } + + public void setAreacode(String areacode) { + this.areacode = areacode == null ? null : areacode.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRegionCodeRyx.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRegionCodeRyx.java new file mode 100644 index 0000000..e0975bf --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRegionCodeRyx.java @@ -0,0 +1,88 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussRegionCodeRyx implements Serializable { + private Integer id; + + private String province; + + private String provincecode; + + private String city; + + private String citycode; + + private String area; + + private String areacode; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getProvince() { + return province; + } + + public void setProvince(String province) { + this.province = province == null ? null : province.trim(); + } + + public String getProvincecode() { + return provincecode; + } + + public void setProvincecode(String provincecode) { + this.provincecode = provincecode == null ? null : provincecode.trim(); + } + + public String getCity() { + return city; + } + + public void setCity(String city) { + this.city = city == null ? null : city.trim(); + } + + public String getCitycode() { + return citycode; + } + + public void setCitycode(String citycode) { + this.citycode = citycode == null ? null : citycode.trim(); + } + + public String getArea() { + return area; + } + + public void setArea(String area) { + this.area = area == null ? null : area.trim(); + } + + public String getAreacode() { + return areacode; + } + + public void setAreacode(String areacode) { + this.areacode = areacode == null ? null : areacode.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRegionCodeSxf.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRegionCodeSxf.java new file mode 100644 index 0000000..5d646af --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRegionCodeSxf.java @@ -0,0 +1,77 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussRegionCodeSxf implements Serializable { + private Integer id; + + private String province; + + private String provincecode; + + private String city; + + private String citycode; + + private String area; + + private String areacode; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getProvince() { + return province; + } + + public void setProvince(String province) { + this.province = province == null ? null : province.trim(); + } + + public String getProvincecode() { + return provincecode; + } + + public void setProvincecode(String provincecode) { + this.provincecode = provincecode == null ? null : provincecode.trim(); + } + + public String getCity() { + return city; + } + + public void setCity(String city) { + this.city = city == null ? null : city.trim(); + } + + public String getCitycode() { + return citycode; + } + + public void setCitycode(String citycode) { + this.citycode = citycode == null ? null : citycode.trim(); + } + + public String getArea() { + return area; + } + + public void setArea(String area) { + this.area = area == null ? null : area.trim(); + } + + public String getAreacode() { + return areacode; + } + + public void setAreacode(String areacode) { + this.areacode = areacode == null ? null : areacode.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRegionCodeYs.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRegionCodeYs.java new file mode 100644 index 0000000..f944277 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRegionCodeYs.java @@ -0,0 +1,77 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussRegionCodeYs implements Serializable { + private Integer id; + + private String province; + + private String provincecode; + + private String city; + + private String citycode; + + private String area; + + private String areacode; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getProvince() { + return province; + } + + public void setProvince(String province) { + this.province = province == null ? null : province.trim(); + } + + public String getProvincecode() { + return provincecode; + } + + public void setProvincecode(String provincecode) { + this.provincecode = provincecode == null ? null : provincecode.trim(); + } + + public String getCity() { + return city; + } + + public void setCity(String city) { + this.city = city == null ? null : city.trim(); + } + + public String getCitycode() { + return citycode; + } + + public void setCitycode(String citycode) { + this.citycode = citycode == null ? null : citycode.trim(); + } + + public String getArea() { + return area; + } + + public void setArea(String area) { + this.area = area == null ? null : area.trim(); + } + + public String getAreacode() { + return areacode; + } + + public void setAreacode(String areacode) { + this.areacode = areacode == null ? null : areacode.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRegionLkl.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRegionLkl.java new file mode 100644 index 0000000..0ef4cbc --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRegionLkl.java @@ -0,0 +1,77 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussRegionLkl implements Serializable { + private String createTime; + + private String optimistic; + + private String updateTime; + + private String code; + + private String name; + + private String parentCode; + + private String id; + + private static final long serialVersionUID = 1L; + + public String getCreateTime() { + return createTime; + } + + public void setCreateTime(String createTime) { + this.createTime = createTime == null ? null : createTime.trim(); + } + + public String getOptimistic() { + return optimistic; + } + + public void setOptimistic(String optimistic) { + this.optimistic = optimistic == null ? null : optimistic.trim(); + } + + public String getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(String updateTime) { + this.updateTime = updateTime == null ? null : updateTime.trim(); + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getParentCode() { + return parentCode; + } + + public void setParentCode(String parentCode) { + this.parentCode = parentCode == null ? null : parentCode.trim(); + } + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id == null ? null : id.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRegionReflect.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRegionReflect.java new file mode 100644 index 0000000..f3baaf6 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRegionReflect.java @@ -0,0 +1,47 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussRegionReflect implements Serializable { + private Integer id; + + private Integer channel; + + private Integer regionsrc; + + private Integer regiondes; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getChannel() { + return channel; + } + + public void setChannel(Integer channel) { + this.channel = channel; + } + + public Integer getRegionsrc() { + return regionsrc; + } + + public void setRegionsrc(Integer regionsrc) { + this.regionsrc = regionsrc; + } + + public Integer getRegiondes() { + return regiondes; + } + + public void setRegiondes(Integer regiondes) { + this.regiondes = regiondes; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussReqRecords.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussReqRecords.java new file mode 100644 index 0000000..7e183a9 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussReqRecords.java @@ -0,0 +1,78 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussReqRecords implements Serializable { + private Integer id; + + private String uri; + + private Integer userid; + + private String loginname; + + private String phone; + + private String ip; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getUri() { + return uri; + } + + public void setUri(String uri) { + this.uri = uri == null ? null : uri.trim(); + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getLoginname() { + return loginname; + } + + public void setLoginname(String loginname) { + this.loginname = loginname == null ? null : loginname.trim(); + } + + public String getPhone() { + return phone; + } + + public void setPhone(String phone) { + this.phone = phone == null ? null : phone.trim(); + } + + public String getIp() { + return ip; + } + + public void setIp(String ip) { + this.ip = ip == null ? null : ip.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRewardConfig.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRewardConfig.java new file mode 100644 index 0000000..55ff9a3 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRewardConfig.java @@ -0,0 +1,69 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussRewardConfig implements Serializable { + private Integer id; + + private String name; + + private String rolecode; + + private String type; + + private BigDecimal scale; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getRolecode() { + return rolecode; + } + + public void setRolecode(String rolecode) { + this.rolecode = rolecode == null ? null : rolecode.trim(); + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public BigDecimal getScale() { + return scale; + } + + public void setScale(BigDecimal scale) { + this.scale = scale; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRiskBlacklist.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRiskBlacklist.java new file mode 100644 index 0000000..85c33e5 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRiskBlacklist.java @@ -0,0 +1,118 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussRiskBlacklist implements Serializable { + private Integer id; + + private String idcardno; + + private String certname; + + private Integer userid; + + private Integer causeuserid; + + private String remark; + + private Integer channel; + + private String payway; + + private String status; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getIdcardno() { + return idcardno; + } + + public void setIdcardno(String idcardno) { + this.idcardno = idcardno == null ? null : idcardno.trim(); + } + + public String getCertname() { + return certname; + } + + public void setCertname(String certname) { + this.certname = certname == null ? null : certname.trim(); + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public Integer getCauseuserid() { + return causeuserid; + } + + public void setCauseuserid(Integer causeuserid) { + this.causeuserid = causeuserid; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public Integer getChannel() { + return channel; + } + + public void setChannel(Integer channel) { + this.channel = channel; + } + + public String getPayway() { + return payway; + } + + public void setPayway(String payway) { + this.payway = payway == null ? null : payway.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRoleInfo.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRoleInfo.java new file mode 100644 index 0000000..9f1f29f --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRoleInfo.java @@ -0,0 +1,78 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussRoleInfo implements Serializable { + private Long id; + + private String name; + + private String creator; + + private Date createtime; + + private String updator; + + private Date updatetime; + + private String version; + + private static final long serialVersionUID = 1L; + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getCreator() { + return creator; + } + + public void setCreator(String creator) { + this.creator = creator == null ? null : creator.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public String getUpdator() { + return updator; + } + + public void setUpdator(String updator) { + this.updator = updator == null ? null : updator.trim(); + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getVersion() { + return version; + } + + public void setVersion(String version) { + this.version = version == null ? null : version.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRoleMenuInfo.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRoleMenuInfo.java new file mode 100644 index 0000000..f65bac0 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRoleMenuInfo.java @@ -0,0 +1,37 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussRoleMenuInfo implements Serializable { + private Long id; + + private Long roleid; + + private Long menuid; + + private static final long serialVersionUID = 1L; + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public Long getRoleid() { + return roleid; + } + + public void setRoleid(Long roleid) { + this.roleid = roleid; + } + + public Long getMenuid() { + return menuid; + } + + public void setMenuid(Long menuid) { + this.menuid = menuid; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRoleMenuInfoCopy1.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRoleMenuInfoCopy1.java new file mode 100644 index 0000000..b5ad867 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRoleMenuInfoCopy1.java @@ -0,0 +1,37 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussRoleMenuInfoCopy1 implements Serializable { + private Long id; + + private Long roleid; + + private Long menuid; + + private static final long serialVersionUID = 1L; + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public Long getRoleid() { + return roleid; + } + + public void setRoleid(Long roleid) { + this.roleid = roleid; + } + + public Long getMenuid() { + return menuid; + } + + public void setMenuid(Long menuid) { + this.menuid = menuid; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRoleUserInfo.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRoleUserInfo.java new file mode 100644 index 0000000..966230a --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussRoleUserInfo.java @@ -0,0 +1,47 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussRoleUserInfo implements Serializable { + private Long id; + + private Long roleid; + + private Long userid; + + private String version; + + private static final long serialVersionUID = 1L; + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public Long getRoleid() { + return roleid; + } + + public void setRoleid(Long roleid) { + this.roleid = roleid; + } + + public Long getUserid() { + return userid; + } + + public void setUserid(Long userid) { + this.userid = userid; + } + + public String getVersion() { + return version; + } + + public void setVersion(String version) { + this.version = version == null ? null : version.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussStaffPermission.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussStaffPermission.java new file mode 100644 index 0000000..a312b7d --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussStaffPermission.java @@ -0,0 +1,68 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussStaffPermission implements Serializable { + private Integer id; + + private Integer userid; + + private String merchantcode; + + private String permissionbill; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getPermissionbill() { + return permissionbill; + } + + public void setPermissionbill(String permissionbill) { + this.permissionbill = permissionbill == null ? null : permissionbill.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussSubMercCodeYs.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussSubMercCodeYs.java new file mode 100644 index 0000000..aaf59ce --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussSubMercCodeYs.java @@ -0,0 +1,67 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussSubMercCodeYs implements Serializable { + private Integer id; + + private String code; + + private String name; + + private String pcode; + + private String levename; + + private String remark; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getPcode() { + return pcode; + } + + public void setPcode(String pcode) { + this.pcode = pcode == null ? null : pcode.trim(); + } + + public String getLevename() { + return levename; + } + + public void setLevename(String levename) { + this.levename = levename == null ? null : levename.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussSubMerchant.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussSubMerchant.java new file mode 100644 index 0000000..1646ee8 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussSubMerchant.java @@ -0,0 +1,108 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussSubMerchant implements Serializable { + private Integer id; + + private String merchantid; + + private String channelid; + + private String submchid; + + private String submchtype; + + private String remark; + + private Integer channeltypeid; + + private String status; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMerchantid() { + return merchantid; + } + + public void setMerchantid(String merchantid) { + this.merchantid = merchantid == null ? null : merchantid.trim(); + } + + public String getChannelid() { + return channelid; + } + + public void setChannelid(String channelid) { + this.channelid = channelid == null ? null : channelid.trim(); + } + + public String getSubmchid() { + return submchid; + } + + public void setSubmchid(String submchid) { + this.submchid = submchid == null ? null : submchid.trim(); + } + + public String getSubmchtype() { + return submchtype; + } + + public void setSubmchtype(String submchtype) { + this.submchtype = submchtype == null ? null : submchtype.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public Integer getChanneltypeid() { + return channeltypeid; + } + + public void setChanneltypeid(Integer channeltypeid) { + this.channeltypeid = channeltypeid; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussSubMerchantApplyOrder.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussSubMerchantApplyOrder.java new file mode 100644 index 0000000..d2ee86a --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussSubMerchantApplyOrder.java @@ -0,0 +1,118 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussSubMerchantApplyOrder implements Serializable { + private Integer id; + + private String merchantcode; + + private Integer channelid; + + private String submchtype; + + private String applyno; + + private String status; + + private String infoqrcode; + + private String resultstatus; + + private String remark; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public Integer getChannelid() { + return channelid; + } + + public void setChannelid(Integer channelid) { + this.channelid = channelid; + } + + public String getSubmchtype() { + return submchtype; + } + + public void setSubmchtype(String submchtype) { + this.submchtype = submchtype == null ? null : submchtype.trim(); + } + + public String getApplyno() { + return applyno; + } + + public void setApplyno(String applyno) { + this.applyno = applyno == null ? null : applyno.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public String getInfoqrcode() { + return infoqrcode; + } + + public void setInfoqrcode(String infoqrcode) { + this.infoqrcode = infoqrcode == null ? null : infoqrcode.trim(); + } + + public String getResultstatus() { + return resultstatus; + } + + public void setResultstatus(String resultstatus) { + this.resultstatus = resultstatus == null ? null : resultstatus.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussSuggest.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussSuggest.java new file mode 100644 index 0000000..2adec21 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussSuggest.java @@ -0,0 +1,88 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussSuggest implements Serializable { + private Integer id; + + private Integer userid; + + private String logo; + + private Date createdt; + + private String content; + + private String status; + + private String picurls; + + private String phone; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getLogo() { + return logo; + } + + public void setLogo(String logo) { + this.logo = logo == null ? null : logo.trim(); + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content == null ? null : content.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public String getPicurls() { + return picurls; + } + + public void setPicurls(String picurls) { + this.picurls = picurls == null ? null : picurls.trim(); + } + + public String getPhone() { + return phone; + } + + public void setPhone(String phone) { + this.phone = phone == null ? null : phone.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussSxfMccInfo.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussSxfMccInfo.java new file mode 100644 index 0000000..a5b1b39 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussSxfMccInfo.java @@ -0,0 +1,67 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussSxfMccInfo implements Serializable { + private Integer fId; + + private String fMccCode; + + private String fGrandpaTxt; + + private String fFatherTxt; + + private String fMccTxt; + + private String fMccType; + + private static final long serialVersionUID = 1L; + + public Integer getfId() { + return fId; + } + + public void setfId(Integer fId) { + this.fId = fId; + } + + public String getfMccCode() { + return fMccCode; + } + + public void setfMccCode(String fMccCode) { + this.fMccCode = fMccCode == null ? null : fMccCode.trim(); + } + + public String getfGrandpaTxt() { + return fGrandpaTxt; + } + + public void setfGrandpaTxt(String fGrandpaTxt) { + this.fGrandpaTxt = fGrandpaTxt == null ? null : fGrandpaTxt.trim(); + } + + public String getfFatherTxt() { + return fFatherTxt; + } + + public void setfFatherTxt(String fFatherTxt) { + this.fFatherTxt = fFatherTxt == null ? null : fFatherTxt.trim(); + } + + public String getfMccTxt() { + return fMccTxt; + } + + public void setfMccTxt(String fMccTxt) { + this.fMccTxt = fMccTxt == null ? null : fMccTxt.trim(); + } + + public String getfMccType() { + return fMccType; + } + + public void setfMccType(String fMccType) { + this.fMccType = fMccType == null ? null : fMccType.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussSysSql.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussSysSql.java new file mode 100644 index 0000000..20cf213 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussSysSql.java @@ -0,0 +1,58 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussSysSql implements Serializable { + private Integer id; + + private String type; + + private String mappername; + + private Date createtime; + + private String sql; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public String getMappername() { + return mappername; + } + + public void setMappername(String mappername) { + this.mappername = mappername == null ? null : mappername.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public String getSql() { + return sql; + } + + public void setSql(String sql) { + this.sql = sql == null ? null : sql.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussSystemInfo.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussSystemInfo.java new file mode 100644 index 0000000..f0389b5 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussSystemInfo.java @@ -0,0 +1,68 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussSystemInfo implements Serializable { + private Integer id; + + private String title; + + private String content; + + private String remark; + + private String seq; + + private Date createdt; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title == null ? null : title.trim(); + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content == null ? null : content.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public String getSeq() { + return seq; + } + + public void setSeq(String seq) { + this.seq = seq == null ? null : seq.trim(); + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussSystemconfig.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussSystemconfig.java new file mode 100644 index 0000000..4ed96fb --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussSystemconfig.java @@ -0,0 +1,67 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussSystemconfig implements Serializable { + private Integer id; + + private String propertykey; + + private String propertyvalue; + + private String propertydesc; + + private String propertyindex; + + private String systemid; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getPropertykey() { + return propertykey; + } + + public void setPropertykey(String propertykey) { + this.propertykey = propertykey == null ? null : propertykey.trim(); + } + + public String getPropertyvalue() { + return propertyvalue; + } + + public void setPropertyvalue(String propertyvalue) { + this.propertyvalue = propertyvalue == null ? null : propertyvalue.trim(); + } + + public String getPropertydesc() { + return propertydesc; + } + + public void setPropertydesc(String propertydesc) { + this.propertydesc = propertydesc == null ? null : propertydesc.trim(); + } + + public String getPropertyindex() { + return propertyindex; + } + + public void setPropertyindex(String propertyindex) { + this.propertyindex = propertyindex == null ? null : propertyindex.trim(); + } + + public String getSystemid() { + return systemid; + } + + public void setSystemid(String systemid) { + this.systemid = systemid == null ? null : systemid.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussTaskSort.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussTaskSort.java new file mode 100644 index 0000000..c46eebf --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussTaskSort.java @@ -0,0 +1,47 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussTaskSort implements Serializable { + private Integer id; + + private String code; + + private String name; + + private String desc; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc == null ? null : desc.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUnknownException.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUnknownException.java new file mode 100644 index 0000000..99d31da --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUnknownException.java @@ -0,0 +1,78 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussUnknownException implements Serializable { + private Integer id; + + private String name; + + private String uri; + + private Integer userid; + + private Date createtime; + + private Date updatetime; + + private String status; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getUri() { + return uri; + } + + public void setUri(String uri) { + this.uri = uri == null ? null : uri.trim(); + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUnknownExceptionWithBLOBs.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUnknownExceptionWithBLOBs.java new file mode 100644 index 0000000..ebcb8a6 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUnknownExceptionWithBLOBs.java @@ -0,0 +1,27 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussUnknownExceptionWithBLOBs extends TbPlussUnknownException implements Serializable { + private String params; + + private String desc; + + private static final long serialVersionUID = 1L; + + public String getParams() { + return params; + } + + public void setParams(String params) { + this.params = params == null ? null : params.trim(); + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc == null ? null : desc.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserAddress.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserAddress.java new file mode 100644 index 0000000..ea601ce --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserAddress.java @@ -0,0 +1,118 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussUserAddress implements Serializable { + private Integer id; + + private String name; + + private String phone; + + private String address; + + private String areacode; + + private String areaname; + + private Integer isdefault; + + private Date createtime; + + private Integer userid; + + private Integer type; + + private String defflag; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getPhone() { + return phone; + } + + public void setPhone(String phone) { + this.phone = phone == null ? null : phone.trim(); + } + + public String getAddress() { + return address; + } + + public void setAddress(String address) { + this.address = address == null ? null : address.trim(); + } + + public String getAreacode() { + return areacode; + } + + public void setAreacode(String areacode) { + this.areacode = areacode == null ? null : areacode.trim(); + } + + public String getAreaname() { + return areaname; + } + + public void setAreaname(String areaname) { + this.areaname = areaname == null ? null : areaname.trim(); + } + + public Integer getIsdefault() { + return isdefault; + } + + public void setIsdefault(Integer isdefault) { + this.isdefault = isdefault; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public Integer getType() { + return type; + } + + public void setType(Integer type) { + this.type = type; + } + + public String getDefflag() { + return defflag; + } + + public void setDefflag(String defflag) { + this.defflag = defflag == null ? null : defflag.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserApp.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserApp.java new file mode 100644 index 0000000..2d093bb --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserApp.java @@ -0,0 +1,438 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussUserApp implements Serializable { + private Integer id; + + private String loginname; + + private Integer userid; + + private String username; + + private String usertype; + + private Integer stafftype; + + private String logo; + + private Integer level; + + private Date createdt; + + private Date updatedt; + + private Double extendprofit; + + private Integer status; + + private Double fansprofit; + + private Double cashprofit; + + private Integer parentid; + + private Integer agentstaffid; + + private String invitenum; + + private Double trademoney; + + private String certreason; + + private Integer bankstatus; + + private String bankreason; + + private String merchantcode; + + private String merchantname; + + private Integer aisleswitch; + + private String token; + + private String isvoice; + + private String pidarr; + + private String isfixedrate; + + private String autoaudit; + + private String payecdemicswitch; + + private String isdirectseller; + + private String ismarket; + + private String isunionpay; + + private String rolecode; + + private String levelcode; + + private Integer sort; + + private String spreadflag; + + private String userno; + + private Integer typemark; + + private Integer areamark; + + private String evasionvoiceflag; + + private String membervoiceflag; + + private String jfshopkey; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getLoginname() { + return loginname; + } + + public void setLoginname(String loginname) { + this.loginname = loginname == null ? null : loginname.trim(); + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getUsername() { + return username; + } + + public void setUsername(String username) { + this.username = username == null ? null : username.trim(); + } + + public String getUsertype() { + return usertype; + } + + public void setUsertype(String usertype) { + this.usertype = usertype == null ? null : usertype.trim(); + } + + public Integer getStafftype() { + return stafftype; + } + + public void setStafftype(Integer stafftype) { + this.stafftype = stafftype; + } + + public String getLogo() { + return logo; + } + + public void setLogo(String logo) { + this.logo = logo == null ? null : logo.trim(); + } + + public Integer getLevel() { + return level; + } + + public void setLevel(Integer level) { + this.level = level; + } + + public Date getCreatedt() { + return createdt; + } + + public void setCreatedt(Date createdt) { + this.createdt = createdt; + } + + public Date getUpdatedt() { + return updatedt; + } + + public void setUpdatedt(Date updatedt) { + this.updatedt = updatedt; + } + + public Double getExtendprofit() { + return extendprofit; + } + + public void setExtendprofit(Double extendprofit) { + this.extendprofit = extendprofit; + } + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public Double getFansprofit() { + return fansprofit; + } + + public void setFansprofit(Double fansprofit) { + this.fansprofit = fansprofit; + } + + public Double getCashprofit() { + return cashprofit; + } + + public void setCashprofit(Double cashprofit) { + this.cashprofit = cashprofit; + } + + public Integer getParentid() { + return parentid; + } + + public void setParentid(Integer parentid) { + this.parentid = parentid; + } + + public Integer getAgentstaffid() { + return agentstaffid; + } + + public void setAgentstaffid(Integer agentstaffid) { + this.agentstaffid = agentstaffid; + } + + public String getInvitenum() { + return invitenum; + } + + public void setInvitenum(String invitenum) { + this.invitenum = invitenum == null ? null : invitenum.trim(); + } + + public Double getTrademoney() { + return trademoney; + } + + public void setTrademoney(Double trademoney) { + this.trademoney = trademoney; + } + + public String getCertreason() { + return certreason; + } + + public void setCertreason(String certreason) { + this.certreason = certreason == null ? null : certreason.trim(); + } + + public Integer getBankstatus() { + return bankstatus; + } + + public void setBankstatus(Integer bankstatus) { + this.bankstatus = bankstatus; + } + + public String getBankreason() { + return bankreason; + } + + public void setBankreason(String bankreason) { + this.bankreason = bankreason == null ? null : bankreason.trim(); + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getMerchantname() { + return merchantname; + } + + public void setMerchantname(String merchantname) { + this.merchantname = merchantname == null ? null : merchantname.trim(); + } + + public Integer getAisleswitch() { + return aisleswitch; + } + + public void setAisleswitch(Integer aisleswitch) { + this.aisleswitch = aisleswitch; + } + + public String getToken() { + return token; + } + + public void setToken(String token) { + this.token = token == null ? null : token.trim(); + } + + public String getIsvoice() { + return isvoice; + } + + public void setIsvoice(String isvoice) { + this.isvoice = isvoice == null ? null : isvoice.trim(); + } + + public String getPidarr() { + return pidarr; + } + + public void setPidarr(String pidarr) { + this.pidarr = pidarr == null ? null : pidarr.trim(); + } + + public String getIsfixedrate() { + return isfixedrate; + } + + public void setIsfixedrate(String isfixedrate) { + this.isfixedrate = isfixedrate == null ? null : isfixedrate.trim(); + } + + public String getAutoaudit() { + return autoaudit; + } + + public void setAutoaudit(String autoaudit) { + this.autoaudit = autoaudit == null ? null : autoaudit.trim(); + } + + public String getPayecdemicswitch() { + return payecdemicswitch; + } + + public void setPayecdemicswitch(String payecdemicswitch) { + this.payecdemicswitch = payecdemicswitch == null ? null : payecdemicswitch.trim(); + } + + public String getIsdirectseller() { + return isdirectseller; + } + + public void setIsdirectseller(String isdirectseller) { + this.isdirectseller = isdirectseller == null ? null : isdirectseller.trim(); + } + + public String getIsmarket() { + return ismarket; + } + + public void setIsmarket(String ismarket) { + this.ismarket = ismarket == null ? null : ismarket.trim(); + } + + public String getIsunionpay() { + return isunionpay; + } + + public void setIsunionpay(String isunionpay) { + this.isunionpay = isunionpay == null ? null : isunionpay.trim(); + } + + public String getRolecode() { + return rolecode; + } + + public void setRolecode(String rolecode) { + this.rolecode = rolecode == null ? null : rolecode.trim(); + } + + public String getLevelcode() { + return levelcode; + } + + public void setLevelcode(String levelcode) { + this.levelcode = levelcode == null ? null : levelcode.trim(); + } + + public Integer getSort() { + return sort; + } + + public void setSort(Integer sort) { + this.sort = sort; + } + + public String getSpreadflag() { + return spreadflag; + } + + public void setSpreadflag(String spreadflag) { + this.spreadflag = spreadflag == null ? null : spreadflag.trim(); + } + + public String getUserno() { + return userno; + } + + public void setUserno(String userno) { + this.userno = userno == null ? null : userno.trim(); + } + + public Integer getTypemark() { + return typemark; + } + + public void setTypemark(Integer typemark) { + this.typemark = typemark; + } + + public Integer getAreamark() { + return areamark; + } + + public void setAreamark(Integer areamark) { + this.areamark = areamark; + } + + public String getEvasionvoiceflag() { + return evasionvoiceflag; + } + + public void setEvasionvoiceflag(String evasionvoiceflag) { + this.evasionvoiceflag = evasionvoiceflag == null ? null : evasionvoiceflag.trim(); + } + + public String getMembervoiceflag() { + return membervoiceflag; + } + + public void setMembervoiceflag(String membervoiceflag) { + this.membervoiceflag = membervoiceflag == null ? null : membervoiceflag.trim(); + } + + public String getJfshopkey() { + return jfshopkey; + } + + public void setJfshopkey(String jfshopkey) { + this.jfshopkey = jfshopkey == null ? null : jfshopkey.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserAreaRewardFlow.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserAreaRewardFlow.java new file mode 100644 index 0000000..22b34ca --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserAreaRewardFlow.java @@ -0,0 +1,89 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussUserAreaRewardFlow implements Serializable { + private Integer id; + + private Integer userid; + + private String rolecode; + + private BigDecimal areaflow; + + private BigDecimal rewardamt; + + private Date createtime; + + private Date createdate; + + private Date profitdate; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getRolecode() { + return rolecode; + } + + public void setRolecode(String rolecode) { + this.rolecode = rolecode == null ? null : rolecode.trim(); + } + + public BigDecimal getAreaflow() { + return areaflow; + } + + public void setAreaflow(BigDecimal areaflow) { + this.areaflow = areaflow; + } + + public BigDecimal getRewardamt() { + return rewardamt; + } + + public void setRewardamt(BigDecimal rewardamt) { + this.rewardamt = rewardamt; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getCreatedate() { + return createdate; + } + + public void setCreatedate(Date createdate) { + this.createdate = createdate; + } + + public Date getProfitdate() { + return profitdate; + } + + public void setProfitdate(Date profitdate) { + this.profitdate = profitdate; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserAssess.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserAssess.java new file mode 100644 index 0000000..40ad68a --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserAssess.java @@ -0,0 +1,118 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussUserAssess implements Serializable { + private Integer id; + + private Integer userid; + + private String rolecode; + + private Integer directmercnum; + + private Integer validmercnum; + + private Date expiretime; + + private Byte ischeck; + + private Byte iswhite; + + private String reason; + + private String remark; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getRolecode() { + return rolecode; + } + + public void setRolecode(String rolecode) { + this.rolecode = rolecode == null ? null : rolecode.trim(); + } + + public Integer getDirectmercnum() { + return directmercnum; + } + + public void setDirectmercnum(Integer directmercnum) { + this.directmercnum = directmercnum; + } + + public Integer getValidmercnum() { + return validmercnum; + } + + public void setValidmercnum(Integer validmercnum) { + this.validmercnum = validmercnum; + } + + public Date getExpiretime() { + return expiretime; + } + + public void setExpiretime(Date expiretime) { + this.expiretime = expiretime; + } + + public Byte getIscheck() { + return ischeck; + } + + public void setIscheck(Byte ischeck) { + this.ischeck = ischeck; + } + + public Byte getIswhite() { + return iswhite; + } + + public void setIswhite(Byte iswhite) { + this.iswhite = iswhite; + } + + public String getReason() { + return reason; + } + + public void setReason(String reason) { + this.reason = reason == null ? null : reason.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserDeviceCash.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserDeviceCash.java new file mode 100644 index 0000000..550bec3 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserDeviceCash.java @@ -0,0 +1,79 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussUserDeviceCash implements Serializable { + private Integer id; + + private String orderno; + + private BigDecimal amount; + + private String status; + + private Integer userid; + + private Date createtime; + + private String refundno; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getOrderno() { + return orderno; + } + + public void setOrderno(String orderno) { + this.orderno = orderno == null ? null : orderno.trim(); + } + + public BigDecimal getAmount() { + return amount; + } + + public void setAmount(BigDecimal amount) { + this.amount = amount; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public String getRefundno() { + return refundno; + } + + public void setRefundno(String refundno) { + this.refundno = refundno == null ? null : refundno.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserExtra.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserExtra.java new file mode 100644 index 0000000..dcc7df3 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserExtra.java @@ -0,0 +1,68 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussUserExtra implements Serializable { + private Integer id; + + private Integer userid; + + private String key; + + private String value; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getKey() { + return key; + } + + public void setKey(String key) { + this.key = key == null ? null : key.trim(); + } + + public String getValue() { + return value; + } + + public void setValue(String value) { + this.value = value == null ? null : value.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserInfo.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserInfo.java new file mode 100644 index 0000000..58a667e --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserInfo.java @@ -0,0 +1,268 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussUserInfo implements Serializable { + private Long id; + + private String loginname; + + private String truename; + + private String provincecode; + + private String citycode; + + private String sex; + + private String phone; + + private String email; + + private Integer status; + + private String password; + + private String creator; + + private Date createtime; + + private String updator; + + private Date updatetime; + + private String version; + + private Long parentid; + + private Integer areaid; + + private String areacode; + + private String source; + + private String merchantcode; + + private String storeid; + + private String paypassword; + + private String facecert; + + private String facecompare; + + private String openid; + + private String channelcode; + + private static final long serialVersionUID = 1L; + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getLoginname() { + return loginname; + } + + public void setLoginname(String loginname) { + this.loginname = loginname == null ? null : loginname.trim(); + } + + public String getTruename() { + return truename; + } + + public void setTruename(String truename) { + this.truename = truename == null ? null : truename.trim(); + } + + public String getProvincecode() { + return provincecode; + } + + public void setProvincecode(String provincecode) { + this.provincecode = provincecode == null ? null : provincecode.trim(); + } + + public String getCitycode() { + return citycode; + } + + public void setCitycode(String citycode) { + this.citycode = citycode == null ? null : citycode.trim(); + } + + public String getSex() { + return sex; + } + + public void setSex(String sex) { + this.sex = sex == null ? null : sex.trim(); + } + + public String getPhone() { + return phone; + } + + public void setPhone(String phone) { + this.phone = phone == null ? null : phone.trim(); + } + + public String getEmail() { + return email; + } + + public void setEmail(String email) { + this.email = email == null ? null : email.trim(); + } + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public String getPassword() { + return password; + } + + public void setPassword(String password) { + this.password = password == null ? null : password.trim(); + } + + public String getCreator() { + return creator; + } + + public void setCreator(String creator) { + this.creator = creator == null ? null : creator.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public String getUpdator() { + return updator; + } + + public void setUpdator(String updator) { + this.updator = updator == null ? null : updator.trim(); + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getVersion() { + return version; + } + + public void setVersion(String version) { + this.version = version == null ? null : version.trim(); + } + + public Long getParentid() { + return parentid; + } + + public void setParentid(Long parentid) { + this.parentid = parentid; + } + + public Integer getAreaid() { + return areaid; + } + + public void setAreaid(Integer areaid) { + this.areaid = areaid; + } + + public String getAreacode() { + return areacode; + } + + public void setAreacode(String areacode) { + this.areacode = areacode == null ? null : areacode.trim(); + } + + public String getSource() { + return source; + } + + public void setSource(String source) { + this.source = source == null ? null : source.trim(); + } + + public String getMerchantcode() { + return merchantcode; + } + + public void setMerchantcode(String merchantcode) { + this.merchantcode = merchantcode == null ? null : merchantcode.trim(); + } + + public String getStoreid() { + return storeid; + } + + public void setStoreid(String storeid) { + this.storeid = storeid == null ? null : storeid.trim(); + } + + public String getPaypassword() { + return paypassword; + } + + public void setPaypassword(String paypassword) { + this.paypassword = paypassword == null ? null : paypassword.trim(); + } + + public String getFacecert() { + return facecert; + } + + public void setFacecert(String facecert) { + this.facecert = facecert == null ? null : facecert.trim(); + } + + public String getFacecompare() { + return facecompare; + } + + public void setFacecompare(String facecompare) { + this.facecompare = facecompare == null ? null : facecompare.trim(); + } + + public String getOpenid() { + return openid; + } + + public void setOpenid(String openid) { + this.openid = openid == null ? null : openid.trim(); + } + + public String getChannelcode() { + return channelcode; + } + + public void setChannelcode(String channelcode) { + this.channelcode = channelcode == null ? null : channelcode.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserIntegral.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserIntegral.java new file mode 100644 index 0000000..a7404b5 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserIntegral.java @@ -0,0 +1,109 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussUserIntegral implements Serializable { + private Integer id; + + private Integer userid; + + private String ordernumber; + + private BigDecimal integral; + + private BigDecimal orderamt; + + private String type; + + private String source; + + private Integer status; + + private String remark; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getOrdernumber() { + return ordernumber; + } + + public void setOrdernumber(String ordernumber) { + this.ordernumber = ordernumber == null ? null : ordernumber.trim(); + } + + public BigDecimal getIntegral() { + return integral; + } + + public void setIntegral(BigDecimal integral) { + this.integral = integral; + } + + public BigDecimal getOrderamt() { + return orderamt; + } + + public void setOrderamt(BigDecimal orderamt) { + this.orderamt = orderamt; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public String getSource() { + return source; + } + + public void setSource(String source) { + this.source = source == null ? null : source.trim(); + } + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserIntegralUse.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserIntegralUse.java new file mode 100644 index 0000000..ccf9890 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserIntegralUse.java @@ -0,0 +1,99 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussUserIntegralUse implements Serializable { + private Integer id; + + private String name; + + private Integer userid; + + private BigDecimal integral; + + private String status; + + private String remark; + + private String ordernumber; + + private Date handletime; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public BigDecimal getIntegral() { + return integral; + } + + public void setIntegral(BigDecimal integral) { + this.integral = integral; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public String getOrdernumber() { + return ordernumber; + } + + public void setOrdernumber(String ordernumber) { + this.ordernumber = ordernumber == null ? null : ordernumber.trim(); + } + + public Date getHandletime() { + return handletime; + } + + public void setHandletime(Date handletime) { + this.handletime = handletime; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserIpRecord.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserIpRecord.java new file mode 100644 index 0000000..4edce88 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserIpRecord.java @@ -0,0 +1,88 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussUserIpRecord implements Serializable { + private Integer id; + + private Integer userid; + + private String regip; + + private Date regtime; + + private String auditip; + + private Date audittime; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getRegip() { + return regip; + } + + public void setRegip(String regip) { + this.regip = regip == null ? null : regip.trim(); + } + + public Date getRegtime() { + return regtime; + } + + public void setRegtime(Date regtime) { + this.regtime = regtime; + } + + public String getAuditip() { + return auditip; + } + + public void setAuditip(String auditip) { + this.auditip = auditip == null ? null : auditip.trim(); + } + + public Date getAudittime() { + return audittime; + } + + public void setAudittime(Date audittime) { + this.audittime = audittime; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserLevel.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserLevel.java new file mode 100644 index 0000000..6452cf7 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserLevel.java @@ -0,0 +1,149 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussUserLevel implements Serializable { + private Integer id; + + private String rolecode; + + private String levelname; + + private String levelcode; + + private Long rate; + + private Long quota; + + private BigDecimal directrate; + + private BigDecimal indirectrate; + + private BigDecimal t2scale; + + private BigDecimal t3scale; + + private BigDecimal dividscale; + + private BigDecimal areascale; + + private BigDecimal jftrate; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getRolecode() { + return rolecode; + } + + public void setRolecode(String rolecode) { + this.rolecode = rolecode == null ? null : rolecode.trim(); + } + + public String getLevelname() { + return levelname; + } + + public void setLevelname(String levelname) { + this.levelname = levelname == null ? null : levelname.trim(); + } + + public String getLevelcode() { + return levelcode; + } + + public void setLevelcode(String levelcode) { + this.levelcode = levelcode == null ? null : levelcode.trim(); + } + + public Long getRate() { + return rate; + } + + public void setRate(Long rate) { + this.rate = rate; + } + + public Long getQuota() { + return quota; + } + + public void setQuota(Long quota) { + this.quota = quota; + } + + public BigDecimal getDirectrate() { + return directrate; + } + + public void setDirectrate(BigDecimal directrate) { + this.directrate = directrate; + } + + public BigDecimal getIndirectrate() { + return indirectrate; + } + + public void setIndirectrate(BigDecimal indirectrate) { + this.indirectrate = indirectrate; + } + + public BigDecimal getT2scale() { + return t2scale; + } + + public void setT2scale(BigDecimal t2scale) { + this.t2scale = t2scale; + } + + public BigDecimal getT3scale() { + return t3scale; + } + + public void setT3scale(BigDecimal t3scale) { + this.t3scale = t3scale; + } + + public BigDecimal getDividscale() { + return dividscale; + } + + public void setDividscale(BigDecimal dividscale) { + this.dividscale = dividscale; + } + + public BigDecimal getAreascale() { + return areascale; + } + + public void setAreascale(BigDecimal areascale) { + this.areascale = areascale; + } + + public BigDecimal getJftrate() { + return jftrate; + } + + public void setJftrate(BigDecimal jftrate) { + this.jftrate = jftrate; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserManageProfit.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserManageProfit.java new file mode 100644 index 0000000..9393a78 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserManageProfit.java @@ -0,0 +1,139 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussUserManageProfit implements Serializable { + private Integer id; + + private Integer userid; + + private Integer parentid; + + private String rolecode; + + private String levelcode; + + private BigDecimal t2flow; + + private BigDecimal t3flow; + + private BigDecimal t2profit; + + private BigDecimal t3profit; + + private Date createtime; + + private Date profitdate; + + private String profitmonth; + + private String remark; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public Integer getParentid() { + return parentid; + } + + public void setParentid(Integer parentid) { + this.parentid = parentid; + } + + public String getRolecode() { + return rolecode; + } + + public void setRolecode(String rolecode) { + this.rolecode = rolecode == null ? null : rolecode.trim(); + } + + public String getLevelcode() { + return levelcode; + } + + public void setLevelcode(String levelcode) { + this.levelcode = levelcode == null ? null : levelcode.trim(); + } + + public BigDecimal getT2flow() { + return t2flow; + } + + public void setT2flow(BigDecimal t2flow) { + this.t2flow = t2flow; + } + + public BigDecimal getT3flow() { + return t3flow; + } + + public void setT3flow(BigDecimal t3flow) { + this.t3flow = t3flow; + } + + public BigDecimal getT2profit() { + return t2profit; + } + + public void setT2profit(BigDecimal t2profit) { + this.t2profit = t2profit; + } + + public BigDecimal getT3profit() { + return t3profit; + } + + public void setT3profit(BigDecimal t3profit) { + this.t3profit = t3profit; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getProfitdate() { + return profitdate; + } + + public void setProfitdate(Date profitdate) { + this.profitdate = profitdate; + } + + public String getProfitmonth() { + return profitmonth; + } + + public void setProfitmonth(String profitmonth) { + this.profitmonth = profitmonth == null ? null : profitmonth.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserMultipleRemark.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserMultipleRemark.java new file mode 100644 index 0000000..b113925 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserMultipleRemark.java @@ -0,0 +1,58 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussUserMultipleRemark implements Serializable { + private Integer id; + + private Integer userid; + + private String code; + + private String remark; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserOrgan.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserOrgan.java new file mode 100644 index 0000000..467f421 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserOrgan.java @@ -0,0 +1,67 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussUserOrgan implements Serializable { + private Integer id; + + private Long userid; + + private String organcode; + + private String organname; + + private String organtypecode; + + private String organtypename; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Long getUserid() { + return userid; + } + + public void setUserid(Long userid) { + this.userid = userid; + } + + public String getOrgancode() { + return organcode; + } + + public void setOrgancode(String organcode) { + this.organcode = organcode == null ? null : organcode.trim(); + } + + public String getOrganname() { + return organname; + } + + public void setOrganname(String organname) { + this.organname = organname == null ? null : organname.trim(); + } + + public String getOrgantypecode() { + return organtypecode; + } + + public void setOrgantypecode(String organtypecode) { + this.organtypecode = organtypecode == null ? null : organtypecode.trim(); + } + + public String getOrgantypename() { + return organtypename; + } + + public void setOrgantypename(String organtypename) { + this.organtypename = organtypename == null ? null : organtypename.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserProfit.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserProfit.java new file mode 100644 index 0000000..0559251 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserProfit.java @@ -0,0 +1,249 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussUserProfit implements Serializable { + private Integer id; + + private Integer userid; + + private Integer parentid; + + private String rolecode; + + private BigDecimal teamtransflow; + + private BigDecimal owntransflow; + + private BigDecimal directtransflow; + + private BigDecimal indirecttransflow; + + private BigDecimal totalprofitamt; + + private BigDecimal directprofitamt; + + private BigDecimal indirectprofitamt; + + private BigDecimal otherprofitamt; + + private BigDecimal t2profitamt; + + private BigDecimal t3profitamt; + + private BigDecimal dividprofitamt; + + private BigDecimal areaflow; + + private BigDecimal areaprofitamt; + + private Date createtime; + + private Date profitdate; + + private String remarks; + + private String levelcode; + + private String profitmonth; + + private Integer transnum; + + private Integer owntransnum; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public Integer getParentid() { + return parentid; + } + + public void setParentid(Integer parentid) { + this.parentid = parentid; + } + + public String getRolecode() { + return rolecode; + } + + public void setRolecode(String rolecode) { + this.rolecode = rolecode == null ? null : rolecode.trim(); + } + + public BigDecimal getTeamtransflow() { + return teamtransflow; + } + + public void setTeamtransflow(BigDecimal teamtransflow) { + this.teamtransflow = teamtransflow; + } + + public BigDecimal getOwntransflow() { + return owntransflow; + } + + public void setOwntransflow(BigDecimal owntransflow) { + this.owntransflow = owntransflow; + } + + public BigDecimal getDirecttransflow() { + return directtransflow; + } + + public void setDirecttransflow(BigDecimal directtransflow) { + this.directtransflow = directtransflow; + } + + public BigDecimal getIndirecttransflow() { + return indirecttransflow; + } + + public void setIndirecttransflow(BigDecimal indirecttransflow) { + this.indirecttransflow = indirecttransflow; + } + + public BigDecimal getTotalprofitamt() { + return totalprofitamt; + } + + public void setTotalprofitamt(BigDecimal totalprofitamt) { + this.totalprofitamt = totalprofitamt; + } + + public BigDecimal getDirectprofitamt() { + return directprofitamt; + } + + public void setDirectprofitamt(BigDecimal directprofitamt) { + this.directprofitamt = directprofitamt; + } + + public BigDecimal getIndirectprofitamt() { + return indirectprofitamt; + } + + public void setIndirectprofitamt(BigDecimal indirectprofitamt) { + this.indirectprofitamt = indirectprofitamt; + } + + public BigDecimal getOtherprofitamt() { + return otherprofitamt; + } + + public void setOtherprofitamt(BigDecimal otherprofitamt) { + this.otherprofitamt = otherprofitamt; + } + + public BigDecimal getT2profitamt() { + return t2profitamt; + } + + public void setT2profitamt(BigDecimal t2profitamt) { + this.t2profitamt = t2profitamt; + } + + public BigDecimal getT3profitamt() { + return t3profitamt; + } + + public void setT3profitamt(BigDecimal t3profitamt) { + this.t3profitamt = t3profitamt; + } + + public BigDecimal getDividprofitamt() { + return dividprofitamt; + } + + public void setDividprofitamt(BigDecimal dividprofitamt) { + this.dividprofitamt = dividprofitamt; + } + + public BigDecimal getAreaflow() { + return areaflow; + } + + public void setAreaflow(BigDecimal areaflow) { + this.areaflow = areaflow; + } + + public BigDecimal getAreaprofitamt() { + return areaprofitamt; + } + + public void setAreaprofitamt(BigDecimal areaprofitamt) { + this.areaprofitamt = areaprofitamt; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getProfitdate() { + return profitdate; + } + + public void setProfitdate(Date profitdate) { + this.profitdate = profitdate; + } + + public String getRemarks() { + return remarks; + } + + public void setRemarks(String remarks) { + this.remarks = remarks == null ? null : remarks.trim(); + } + + public String getLevelcode() { + return levelcode; + } + + public void setLevelcode(String levelcode) { + this.levelcode = levelcode == null ? null : levelcode.trim(); + } + + public String getProfitmonth() { + return profitmonth; + } + + public void setProfitmonth(String profitmonth) { + this.profitmonth = profitmonth == null ? null : profitmonth.trim(); + } + + public Integer getTransnum() { + return transnum; + } + + public void setTransnum(Integer transnum) { + this.transnum = transnum; + } + + public Integer getOwntransnum() { + return owntransnum; + } + + public void setOwntransnum(Integer owntransnum) { + this.owntransnum = owntransnum; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserPromotion.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserPromotion.java new file mode 100644 index 0000000..6a2f661 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserPromotion.java @@ -0,0 +1,110 @@ +package com.chaozhanggui.dao.system.entity; + +import com.baomidou.mybatisplus.annotation.TableField; +import com.chaozhanggui.dao.system.model.CashStatus; + +import java.beans.Transient; +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; +import java.util.LinkedHashMap; +import java.util.LinkedList; +import java.util.Map; + +public class TbPlussUserPromotion implements Serializable { + private Integer userId; + + private String typeCode; + + private BigDecimal currentFee; + + private String parentUserId; + + + private String isExtend; + + private Date createTime; + + private Date updateTime; + + @TableField + private String loginName; + + + @TableField(exist = false) + private LinkedList cashStatus; + + private static final long serialVersionUID = 1L; + + public Integer getUserId() { + return userId; + } + + public void setUserId(Integer userId) { + this.userId = userId; + } + + public String getTypeCode() { + return typeCode; + } + + public void setTypeCode(String typeCode) { + this.typeCode = typeCode == null ? null : typeCode.trim(); + } + + public BigDecimal getCurrentFee() { + return currentFee; + } + + public void setCurrentFee(BigDecimal currentFee) { + this.currentFee = currentFee; + } + + public String getParentUserId() { + return parentUserId; + } + + public void setParentUserId(String parentUserId) { + this.parentUserId = parentUserId == null ? null : parentUserId.trim(); + } + + public String getIsExtend() { + return isExtend; + } + + public void setIsExtend(String isExtend) { + this.isExtend = isExtend == null ? null : isExtend.trim(); + } + + public Date getCreateTime() { + return createTime; + } + + public void setCreateTime(Date createTime) { + this.createTime = createTime; + } + + public Date getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(Date updateTime) { + this.updateTime = updateTime; + } + + public LinkedList getCashStatus() { + return cashStatus; + } + + public void setCashStatus(LinkedList cashStatus) { + this.cashStatus = cashStatus; + } + + public String getLoginName() { + return loginName; + } + + public void setLoginName(String loginName) { + this.loginName = loginName; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserPushId.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserPushId.java new file mode 100644 index 0000000..05565be --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserPushId.java @@ -0,0 +1,58 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussUserPushId implements Serializable { + private Integer id; + + private Integer userid; + + private String getuiclientid; + + private Date createtime; + + private Date updatetime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getGetuiclientid() { + return getuiclientid; + } + + public void setGetuiclientid(String getuiclientid) { + this.getuiclientid = getuiclientid == null ? null : getuiclientid.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserRewardFlow.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserRewardFlow.java new file mode 100644 index 0000000..876957d --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserRewardFlow.java @@ -0,0 +1,129 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussUserRewardFlow implements Serializable { + private Integer id; + + private Integer userid; + + private Integer parentid; + + private BigDecimal t2flow; + + private BigDecimal t3flow; + + private BigDecimal dividflow; + + private BigDecimal areaflow; + + private Date createtime; + + private Date createdate; + + private String ordernumber; + + private Integer status; + + private String createmonth; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public Integer getParentid() { + return parentid; + } + + public void setParentid(Integer parentid) { + this.parentid = parentid; + } + + public BigDecimal getT2flow() { + return t2flow; + } + + public void setT2flow(BigDecimal t2flow) { + this.t2flow = t2flow; + } + + public BigDecimal getT3flow() { + return t3flow; + } + + public void setT3flow(BigDecimal t3flow) { + this.t3flow = t3flow; + } + + public BigDecimal getDividflow() { + return dividflow; + } + + public void setDividflow(BigDecimal dividflow) { + this.dividflow = dividflow; + } + + public BigDecimal getAreaflow() { + return areaflow; + } + + public void setAreaflow(BigDecimal areaflow) { + this.areaflow = areaflow; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getCreatedate() { + return createdate; + } + + public void setCreatedate(Date createdate) { + this.createdate = createdate; + } + + public String getOrdernumber() { + return ordernumber; + } + + public void setOrdernumber(String ordernumber) { + this.ordernumber = ordernumber == null ? null : ordernumber.trim(); + } + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public String getCreatemonth() { + return createmonth; + } + + public void setCreatemonth(String createmonth) { + this.createmonth = createmonth == null ? null : createmonth.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserRewardInfo.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserRewardInfo.java new file mode 100644 index 0000000..b34e793 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserRewardInfo.java @@ -0,0 +1,108 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussUserRewardInfo implements Serializable { + private Integer id; + + private Integer userid; + + private String phone; + + private Integer arealevel; + + private String areano; + + private String areaname; + + private Integer status; + + private Integer reid; + + private String rname; + + private Date createtime; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getPhone() { + return phone; + } + + public void setPhone(String phone) { + this.phone = phone == null ? null : phone.trim(); + } + + public Integer getArealevel() { + return arealevel; + } + + public void setArealevel(Integer arealevel) { + this.arealevel = arealevel; + } + + public String getAreano() { + return areano; + } + + public void setAreano(String areano) { + this.areano = areano == null ? null : areano.trim(); + } + + public String getAreaname() { + return areaname; + } + + public void setAreaname(String areaname) { + this.areaname = areaname == null ? null : areaname.trim(); + } + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public Integer getReid() { + return reid; + } + + public void setReid(Integer reid) { + this.reid = reid; + } + + public String getRname() { + return rname; + } + + public void setRname(String rname) { + this.rname = rname == null ? null : rname.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserRole.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserRole.java new file mode 100644 index 0000000..f7ba96e --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserRole.java @@ -0,0 +1,109 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussUserRole implements Serializable { + private Integer id; + + private String rolename; + + private String rolecode; + + private Date createtime; + + private Integer validflag; + + private BigDecimal validtransamt; + + private Integer validtransnum; + + private Integer minnum; + + private Date opentime; + + private Integer protectdaynum; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getRolename() { + return rolename; + } + + public void setRolename(String rolename) { + this.rolename = rolename == null ? null : rolename.trim(); + } + + public String getRolecode() { + return rolecode; + } + + public void setRolecode(String rolecode) { + this.rolecode = rolecode == null ? null : rolecode.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Integer getValidflag() { + return validflag; + } + + public void setValidflag(Integer validflag) { + this.validflag = validflag; + } + + public BigDecimal getValidtransamt() { + return validtransamt; + } + + public void setValidtransamt(BigDecimal validtransamt) { + this.validtransamt = validtransamt; + } + + public Integer getValidtransnum() { + return validtransnum; + } + + public void setValidtransnum(Integer validtransnum) { + this.validtransnum = validtransnum; + } + + public Integer getMinnum() { + return minnum; + } + + public void setMinnum(Integer minnum) { + this.minnum = minnum; + } + + public Date getOpentime() { + return opentime; + } + + public void setOpentime(Date opentime) { + this.opentime = opentime; + } + + public Integer getProtectdaynum() { + return protectdaynum; + } + + public void setProtectdaynum(Integer protectdaynum) { + this.protectdaynum = protectdaynum; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserTask.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserTask.java new file mode 100644 index 0000000..75f184b --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserTask.java @@ -0,0 +1,128 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.util.Date; + +public class TbPlussUserTask implements Serializable { + private Integer id; + + private Integer userid; + + private String taskcode; + + private String status; + + private String type; + + private String arg0; + + private String arg1; + + private String arg2; + + private String arg3; + + private Date createtime; + + private Date updatetime; + + private String extension; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getTaskcode() { + return taskcode; + } + + public void setTaskcode(String taskcode) { + this.taskcode = taskcode == null ? null : taskcode.trim(); + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } + + public String getArg0() { + return arg0; + } + + public void setArg0(String arg0) { + this.arg0 = arg0 == null ? null : arg0.trim(); + } + + public String getArg1() { + return arg1; + } + + public void setArg1(String arg1) { + this.arg1 = arg1 == null ? null : arg1.trim(); + } + + public String getArg2() { + return arg2; + } + + public void setArg2(String arg2) { + this.arg2 = arg2 == null ? null : arg2.trim(); + } + + public String getArg3() { + return arg3; + } + + public void setArg3(String arg3) { + this.arg3 = arg3 == null ? null : arg3.trim(); + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getUpdatetime() { + return updatetime; + } + + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + public String getExtension() { + return extension; + } + + public void setExtension(String extension) { + this.extension = extension == null ? null : extension.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserType.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserType.java new file mode 100644 index 0000000..d039da1 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserType.java @@ -0,0 +1,69 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +public class TbPlussUserType implements Serializable { + private String typeCode; + + private String typeName; + + private BigDecimal currentFee; + + private BigDecimal lowFee; + + private Date createTime; + + private Date updateTime; + + private static final long serialVersionUID = 1L; + + public String getTypeCode() { + return typeCode; + } + + public void setTypeCode(String typeCode) { + this.typeCode = typeCode == null ? null : typeCode.trim(); + } + + public String getTypeName() { + return typeName; + } + + public void setTypeName(String typeName) { + this.typeName = typeName == null ? null : typeName.trim(); + } + + public BigDecimal getCurrentFee() { + return currentFee; + } + + public void setCurrentFee(BigDecimal currentFee) { + this.currentFee = currentFee; + } + + public BigDecimal getLowFee() { + return lowFee; + } + + public void setLowFee(BigDecimal lowFee) { + this.lowFee = lowFee; + } + + public Date getCreateTime() { + return createTime; + } + + public void setCreateTime(Date createTime) { + this.createTime = createTime; + } + + public Date getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(Date updateTime) { + this.updateTime = updateTime; + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserVoice.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserVoice.java new file mode 100644 index 0000000..b9ba898 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussUserVoice.java @@ -0,0 +1,97 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussUserVoice implements Serializable { + private Integer id; + + private Integer userid; + + private String paysuccess; + + private String paycancel; + + private String membercharge; + + private String memberconsume; + + private String deliveryorder; + + private String storeorder; + + private String urge; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserid() { + return userid; + } + + public void setUserid(Integer userid) { + this.userid = userid; + } + + public String getPaysuccess() { + return paysuccess; + } + + public void setPaysuccess(String paysuccess) { + this.paysuccess = paysuccess == null ? null : paysuccess.trim(); + } + + public String getPaycancel() { + return paycancel; + } + + public void setPaycancel(String paycancel) { + this.paycancel = paycancel == null ? null : paycancel.trim(); + } + + public String getMembercharge() { + return membercharge; + } + + public void setMembercharge(String membercharge) { + this.membercharge = membercharge == null ? null : membercharge.trim(); + } + + public String getMemberconsume() { + return memberconsume; + } + + public void setMemberconsume(String memberconsume) { + this.memberconsume = memberconsume == null ? null : memberconsume.trim(); + } + + public String getDeliveryorder() { + return deliveryorder; + } + + public void setDeliveryorder(String deliveryorder) { + this.deliveryorder = deliveryorder == null ? null : deliveryorder.trim(); + } + + public String getStoreorder() { + return storeorder; + } + + public void setStoreorder(String storeorder) { + this.storeorder = storeorder == null ? null : storeorder.trim(); + } + + public String getUrge() { + return urge; + } + + public void setUrge(String urge) { + this.urge = urge == null ? null : urge.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussWxBankCode.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussWxBankCode.java new file mode 100644 index 0000000..f82ee22 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussWxBankCode.java @@ -0,0 +1,47 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussWxBankCode implements Serializable { + private Integer id; + + private String bankname; + + private String bankcode; + + private String remark; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getBankname() { + return bankname; + } + + public void setBankname(String bankname) { + this.bankname = bankname == null ? null : bankname.trim(); + } + + public String getBankcode() { + return bankcode; + } + + public void setBankcode(String bankcode) { + this.bankcode = bankcode == null ? null : bankcode.trim(); + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark == null ? null : remark.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussWxCityInfo.java b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussWxCityInfo.java new file mode 100644 index 0000000..7121434 --- /dev/null +++ b/newadmin/dao-api/src/main/java/com/chaozhanggui/dao/system/entity/TbPlussWxCityInfo.java @@ -0,0 +1,37 @@ +package com.chaozhanggui.dao.system.entity; + +import java.io.Serializable; + +public class TbPlussWxCityInfo implements Serializable { + private Integer id; + + private String citycode; + + private String cityname; + + private static final long serialVersionUID = 1L; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCitycode() { + return citycode; + } + + public void setCitycode(String citycode) { + this.citycode = citycode == null ? null : citycode.trim(); + } + + public String getCityname() { + return cityname; + } + + public void setCityname(String cityname) { + this.cityname = cityname == null ? null : cityname.trim(); + } +} \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbLklRegionBankInfoMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbLklRegionBankInfoMapper.xml new file mode 100644 index 0000000..37bb557 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbLklRegionBankInfoMapper.xml @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + id, s_code, s_name, r_code, r_name, clear_no, area_code, branch_bank_no, branch_bank_name, + bank_no + + + + delete from tb_lkl_region_bank_info + where id = #{id,jdbcType=INTEGER} + + + insert into tb_lkl_region_bank_info (id, s_code, s_name, + r_code, r_name, clear_no, + area_code, branch_bank_no, branch_bank_name, + bank_no) + values (#{id,jdbcType=INTEGER}, #{sCode,jdbcType=VARCHAR}, #{sName,jdbcType=VARCHAR}, + #{rCode,jdbcType=VARCHAR}, #{rName,jdbcType=VARCHAR}, #{clearNo,jdbcType=VARCHAR}, + #{areaCode,jdbcType=VARCHAR}, #{branchBankNo,jdbcType=VARCHAR}, #{branchBankName,jdbcType=VARCHAR}, + #{bankNo,jdbcType=VARCHAR}) + + + insert into tb_lkl_region_bank_info + + + id, + + + s_code, + + + s_name, + + + r_code, + + + r_name, + + + clear_no, + + + area_code, + + + branch_bank_no, + + + branch_bank_name, + + + bank_no, + + + + + #{id,jdbcType=INTEGER}, + + + #{sCode,jdbcType=VARCHAR}, + + + #{sName,jdbcType=VARCHAR}, + + + #{rCode,jdbcType=VARCHAR}, + + + #{rName,jdbcType=VARCHAR}, + + + #{clearNo,jdbcType=VARCHAR}, + + + #{areaCode,jdbcType=VARCHAR}, + + + #{branchBankNo,jdbcType=VARCHAR}, + + + #{branchBankName,jdbcType=VARCHAR}, + + + #{bankNo,jdbcType=VARCHAR}, + + + + + update tb_lkl_region_bank_info + + + s_code = #{sCode,jdbcType=VARCHAR}, + + + s_name = #{sName,jdbcType=VARCHAR}, + + + r_code = #{rCode,jdbcType=VARCHAR}, + + + r_name = #{rName,jdbcType=VARCHAR}, + + + clear_no = #{clearNo,jdbcType=VARCHAR}, + + + area_code = #{areaCode,jdbcType=VARCHAR}, + + + branch_bank_no = #{branchBankNo,jdbcType=VARCHAR}, + + + branch_bank_name = #{branchBankName,jdbcType=VARCHAR}, + + + bank_no = #{bankNo,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_lkl_region_bank_info + set s_code = #{sCode,jdbcType=VARCHAR}, + s_name = #{sName,jdbcType=VARCHAR}, + r_code = #{rCode,jdbcType=VARCHAR}, + r_name = #{rName,jdbcType=VARCHAR}, + clear_no = #{clearNo,jdbcType=VARCHAR}, + area_code = #{areaCode,jdbcType=VARCHAR}, + branch_bank_no = #{branchBankNo,jdbcType=VARCHAR}, + branch_bank_name = #{branchBankName,jdbcType=VARCHAR}, + bank_no = #{bankNo,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussAccessChannelCipherCodeMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussAccessChannelCipherCodeMapper.xml new file mode 100644 index 0000000..64a26eb --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussAccessChannelCipherCodeMapper.xml @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + id, orgId, createTime + + + priKey, pubKey + + + + delete from tb_pluss_access_channel_cipher_code + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_access_channel_cipher_code (id, orgId, createTime, + priKey, pubKey) + values (#{id,jdbcType=INTEGER}, #{orgid,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, + #{prikey,jdbcType=LONGVARCHAR}, #{pubkey,jdbcType=LONGVARCHAR}) + + + insert into tb_pluss_access_channel_cipher_code + + + id, + + + orgId, + + + createTime, + + + priKey, + + + pubKey, + + + + + #{id,jdbcType=INTEGER}, + + + #{orgid,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{prikey,jdbcType=LONGVARCHAR}, + + + #{pubkey,jdbcType=LONGVARCHAR}, + + + + + update tb_pluss_access_channel_cipher_code + + + orgId = #{orgid,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + priKey = #{prikey,jdbcType=LONGVARCHAR}, + + + pubKey = #{pubkey,jdbcType=LONGVARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_access_channel_cipher_code + set orgId = #{orgid,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + priKey = #{prikey,jdbcType=LONGVARCHAR}, + pubKey = #{pubkey,jdbcType=LONGVARCHAR} + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_access_channel_cipher_code + set orgId = #{orgid,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussAccessChannelMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussAccessChannelMapper.xml new file mode 100644 index 0000000..f53557e --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussAccessChannelMapper.xml @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + id, name, code, orgId, minRate, maxRate, createTime, remark + + + + delete from tb_pluss_access_channel + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_access_channel (id, name, code, + orgId, minRate, maxRate, + createTime, remark) + values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{code,jdbcType=VARCHAR}, + #{orgid,jdbcType=VARCHAR}, #{minrate,jdbcType=DECIMAL}, #{maxrate,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{remark,jdbcType=VARCHAR}) + + + insert into tb_pluss_access_channel + + + id, + + + name, + + + code, + + + orgId, + + + minRate, + + + maxRate, + + + createTime, + + + remark, + + + + + #{id,jdbcType=INTEGER}, + + + #{name,jdbcType=VARCHAR}, + + + #{code,jdbcType=VARCHAR}, + + + #{orgid,jdbcType=VARCHAR}, + + + #{minrate,jdbcType=DECIMAL}, + + + #{maxrate,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{remark,jdbcType=VARCHAR}, + + + + + update tb_pluss_access_channel + + + name = #{name,jdbcType=VARCHAR}, + + + code = #{code,jdbcType=VARCHAR}, + + + orgId = #{orgid,jdbcType=VARCHAR}, + + + minRate = #{minrate,jdbcType=DECIMAL}, + + + maxRate = #{maxrate,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_access_channel + set name = #{name,jdbcType=VARCHAR}, + code = #{code,jdbcType=VARCHAR}, + orgId = #{orgid,jdbcType=VARCHAR}, + minRate = #{minrate,jdbcType=DECIMAL}, + maxRate = #{maxrate,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + remark = #{remark,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussAccessChannelWxConfMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussAccessChannelWxConfMapper.xml new file mode 100644 index 0000000..076f7da --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussAccessChannelWxConfMapper.xml @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + id, orgId, type, subAppid, accountType, jsapiPath, uniFlag, createTime, updateTime + + + + delete from tb_pluss_access_channel_wx_conf + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_access_channel_wx_conf (id, orgId, type, + subAppid, accountType, jsapiPath, + uniFlag, createTime, updateTime + ) + values (#{id,jdbcType=INTEGER}, #{orgid,jdbcType=VARCHAR}, #{type,jdbcType=VARCHAR}, + #{subappid,jdbcType=VARCHAR}, #{accounttype,jdbcType=VARCHAR}, #{jsapipath,jdbcType=VARCHAR}, + #{uniflag,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP} + ) + + + insert into tb_pluss_access_channel_wx_conf + + + id, + + + orgId, + + + type, + + + subAppid, + + + accountType, + + + jsapiPath, + + + uniFlag, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{orgid,jdbcType=VARCHAR}, + + + #{type,jdbcType=VARCHAR}, + + + #{subappid,jdbcType=VARCHAR}, + + + #{accounttype,jdbcType=VARCHAR}, + + + #{jsapipath,jdbcType=VARCHAR}, + + + #{uniflag,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_access_channel_wx_conf + + + orgId = #{orgid,jdbcType=VARCHAR}, + + + type = #{type,jdbcType=VARCHAR}, + + + subAppid = #{subappid,jdbcType=VARCHAR}, + + + accountType = #{accounttype,jdbcType=VARCHAR}, + + + jsapiPath = #{jsapipath,jdbcType=VARCHAR}, + + + uniFlag = #{uniflag,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_access_channel_wx_conf + set orgId = #{orgid,jdbcType=VARCHAR}, + type = #{type,jdbcType=VARCHAR}, + subAppid = #{subappid,jdbcType=VARCHAR}, + accountType = #{accounttype,jdbcType=VARCHAR}, + jsapiPath = #{jsapipath,jdbcType=VARCHAR}, + uniFlag = #{uniflag,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussAccountMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussAccountMapper.xml new file mode 100644 index 0000000..2e1c27e --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussAccountMapper.xml @@ -0,0 +1,184 @@ + + + + + + + + + + + + + + + + + + + + id, userId, idcardId, bankCardId, certificateUrl, settleType, createTime, updateTime, + channelType, valid + + + bak + + + + delete from tb_pluss_account + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_account (id, userId, idcardId, + bankCardId, certificateUrl, settleType, + createTime, updateTime, channelType, + valid, bak) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=VARCHAR}, #{idcardid,jdbcType=VARCHAR}, + #{bankcardid,jdbcType=VARCHAR}, #{certificateurl,jdbcType=VARCHAR}, #{settletype,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}, #{channeltype,jdbcType=VARCHAR}, + #{valid,jdbcType=INTEGER}, #{bak,jdbcType=LONGVARCHAR}) + + + insert into tb_pluss_account + + + id, + + + userId, + + + idcardId, + + + bankCardId, + + + certificateUrl, + + + settleType, + + + createTime, + + + updateTime, + + + channelType, + + + valid, + + + bak, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=VARCHAR}, + + + #{idcardid,jdbcType=VARCHAR}, + + + #{bankcardid,jdbcType=VARCHAR}, + + + #{certificateurl,jdbcType=VARCHAR}, + + + #{settletype,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{channeltype,jdbcType=VARCHAR}, + + + #{valid,jdbcType=INTEGER}, + + + #{bak,jdbcType=LONGVARCHAR}, + + + + + update tb_pluss_account + + + userId = #{userid,jdbcType=VARCHAR}, + + + idcardId = #{idcardid,jdbcType=VARCHAR}, + + + bankCardId = #{bankcardid,jdbcType=VARCHAR}, + + + certificateUrl = #{certificateurl,jdbcType=VARCHAR}, + + + settleType = #{settletype,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + channelType = #{channeltype,jdbcType=VARCHAR}, + + + valid = #{valid,jdbcType=INTEGER}, + + + bak = #{bak,jdbcType=LONGVARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_account + set userId = #{userid,jdbcType=VARCHAR}, + idcardId = #{idcardid,jdbcType=VARCHAR}, + bankCardId = #{bankcardid,jdbcType=VARCHAR}, + certificateUrl = #{certificateurl,jdbcType=VARCHAR}, + settleType = #{settletype,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + channelType = #{channeltype,jdbcType=VARCHAR}, + valid = #{valid,jdbcType=INTEGER}, + bak = #{bak,jdbcType=LONGVARCHAR} + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_account + set userId = #{userid,jdbcType=VARCHAR}, + idcardId = #{idcardid,jdbcType=VARCHAR}, + bankCardId = #{bankcardid,jdbcType=VARCHAR}, + certificateUrl = #{certificateurl,jdbcType=VARCHAR}, + settleType = #{settletype,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + channelType = #{channeltype,jdbcType=VARCHAR}, + valid = #{valid,jdbcType=INTEGER} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussAccountOldMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussAccountOldMapper.xml new file mode 100644 index 0000000..a1a4177 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussAccountOldMapper.xml @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + id, userId, idcardId, bankCardId, settleType, createTime, updateTime + + + bak + + + + delete from tb_pluss_account_old + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_account_old (id, userId, idcardId, + bankCardId, settleType, createTime, + updateTime, bak) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=VARCHAR}, #{idcardid,jdbcType=VARCHAR}, + #{bankcardid,jdbcType=VARCHAR}, #{settletype,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, + #{updatetime,jdbcType=TIMESTAMP}, #{bak,jdbcType=LONGVARCHAR}) + + + insert into tb_pluss_account_old + + + id, + + + userId, + + + idcardId, + + + bankCardId, + + + settleType, + + + createTime, + + + updateTime, + + + bak, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=VARCHAR}, + + + #{idcardid,jdbcType=VARCHAR}, + + + #{bankcardid,jdbcType=VARCHAR}, + + + #{settletype,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{bak,jdbcType=LONGVARCHAR}, + + + + + update tb_pluss_account_old + + + userId = #{userid,jdbcType=VARCHAR}, + + + idcardId = #{idcardid,jdbcType=VARCHAR}, + + + bankCardId = #{bankcardid,jdbcType=VARCHAR}, + + + settleType = #{settletype,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + bak = #{bak,jdbcType=LONGVARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_account_old + set userId = #{userid,jdbcType=VARCHAR}, + idcardId = #{idcardid,jdbcType=VARCHAR}, + bankCardId = #{bankcardid,jdbcType=VARCHAR}, + settleType = #{settletype,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + bak = #{bak,jdbcType=LONGVARCHAR} + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_account_old + set userId = #{userid,jdbcType=VARCHAR}, + idcardId = #{idcardid,jdbcType=VARCHAR}, + bankCardId = #{bankcardid,jdbcType=VARCHAR}, + settleType = #{settletype,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussAccountV2Mapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussAccountV2Mapper.xml new file mode 100644 index 0000000..cd80552 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussAccountV2Mapper.xml @@ -0,0 +1,172 @@ + + + + + + + + + + + + + + + + + + + id, userId, idcardId, bankCardId, certificateUrl, settleType, createTime, updateTime, + channelType + + + bak + + + + delete from tb_pluss_account_v2 + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_account_v2 (id, userId, idcardId, + bankCardId, certificateUrl, settleType, + createTime, updateTime, channelType, + bak) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=VARCHAR}, #{idcardid,jdbcType=VARCHAR}, + #{bankcardid,jdbcType=VARCHAR}, #{certificateurl,jdbcType=VARCHAR}, #{settletype,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}, #{channeltype,jdbcType=VARCHAR}, + #{bak,jdbcType=LONGVARCHAR}) + + + insert into tb_pluss_account_v2 + + + id, + + + userId, + + + idcardId, + + + bankCardId, + + + certificateUrl, + + + settleType, + + + createTime, + + + updateTime, + + + channelType, + + + bak, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=VARCHAR}, + + + #{idcardid,jdbcType=VARCHAR}, + + + #{bankcardid,jdbcType=VARCHAR}, + + + #{certificateurl,jdbcType=VARCHAR}, + + + #{settletype,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{channeltype,jdbcType=VARCHAR}, + + + #{bak,jdbcType=LONGVARCHAR}, + + + + + update tb_pluss_account_v2 + + + userId = #{userid,jdbcType=VARCHAR}, + + + idcardId = #{idcardid,jdbcType=VARCHAR}, + + + bankCardId = #{bankcardid,jdbcType=VARCHAR}, + + + certificateUrl = #{certificateurl,jdbcType=VARCHAR}, + + + settleType = #{settletype,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + channelType = #{channeltype,jdbcType=VARCHAR}, + + + bak = #{bak,jdbcType=LONGVARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_account_v2 + set userId = #{userid,jdbcType=VARCHAR}, + idcardId = #{idcardid,jdbcType=VARCHAR}, + bankCardId = #{bankcardid,jdbcType=VARCHAR}, + certificateUrl = #{certificateurl,jdbcType=VARCHAR}, + settleType = #{settletype,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + channelType = #{channeltype,jdbcType=VARCHAR}, + bak = #{bak,jdbcType=LONGVARCHAR} + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_account_v2 + set userId = #{userid,jdbcType=VARCHAR}, + idcardId = #{idcardid,jdbcType=VARCHAR}, + bankCardId = #{bankcardid,jdbcType=VARCHAR}, + certificateUrl = #{certificateurl,jdbcType=VARCHAR}, + settleType = #{settletype,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + channelType = #{channeltype,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussActivityActivateMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussActivityActivateMapper.xml new file mode 100644 index 0000000..16095a8 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussActivityActivateMapper.xml @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + id, userId, merchantCode, merchantName, giveMoney, storeId, storeName, name, createDt, + posterUrl + + + + delete from tb_pluss_activity_activate + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_activity_activate (id, userId, merchantCode, + merchantName, giveMoney, storeId, + storeName, name, createDt, + posterUrl) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, + #{merchantname,jdbcType=VARCHAR}, #{givemoney,jdbcType=DOUBLE}, #{storeid,jdbcType=VARCHAR}, + #{storename,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, #{createdt,jdbcType=TIMESTAMP}, + #{posterurl,jdbcType=VARCHAR}) + + + insert into tb_pluss_activity_activate + + + id, + + + userId, + + + merchantCode, + + + merchantName, + + + giveMoney, + + + storeId, + + + storeName, + + + name, + + + createDt, + + + posterUrl, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{givemoney,jdbcType=DOUBLE}, + + + #{storeid,jdbcType=VARCHAR}, + + + #{storename,jdbcType=VARCHAR}, + + + #{name,jdbcType=VARCHAR}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{posterurl,jdbcType=VARCHAR}, + + + + + update tb_pluss_activity_activate + + + userId = #{userid,jdbcType=INTEGER}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + giveMoney = #{givemoney,jdbcType=DOUBLE}, + + + storeId = #{storeid,jdbcType=VARCHAR}, + + + storeName = #{storename,jdbcType=VARCHAR}, + + + name = #{name,jdbcType=VARCHAR}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + posterUrl = #{posterurl,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_activity_activate + set userId = #{userid,jdbcType=INTEGER}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + giveMoney = #{givemoney,jdbcType=DOUBLE}, + storeId = #{storeid,jdbcType=VARCHAR}, + storeName = #{storename,jdbcType=VARCHAR}, + name = #{name,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + posterUrl = #{posterurl,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussActivityConsumReturnMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussActivityConsumReturnMapper.xml new file mode 100644 index 0000000..4ab4b0f --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussActivityConsumReturnMapper.xml @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + id, userId, merchantCode, merchantName, storeId, storeName, name, createDt, type, + comsumeMoney, returnMoney, percent, startDt, endDt, timeType, posterUrl + + + + delete from tb_pluss_activity_consum_return + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_activity_consum_return (id, userId, merchantCode, + merchantName, storeId, storeName, + name, createDt, type, + comsumeMoney, returnMoney, percent, + startDt, endDt, timeType, + posterUrl) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, + #{merchantname,jdbcType=VARCHAR}, #{storeid,jdbcType=VARCHAR}, #{storename,jdbcType=VARCHAR}, + #{name,jdbcType=VARCHAR}, #{createdt,jdbcType=TIMESTAMP}, #{type,jdbcType=INTEGER}, + #{comsumemoney,jdbcType=DOUBLE}, #{returnmoney,jdbcType=DOUBLE}, #{percent,jdbcType=DOUBLE}, + #{startdt,jdbcType=TIMESTAMP}, #{enddt,jdbcType=TIMESTAMP}, #{timetype,jdbcType=INTEGER}, + #{posterurl,jdbcType=VARCHAR}) + + + insert into tb_pluss_activity_consum_return + + + id, + + + userId, + + + merchantCode, + + + merchantName, + + + storeId, + + + storeName, + + + name, + + + createDt, + + + type, + + + comsumeMoney, + + + returnMoney, + + + percent, + + + startDt, + + + endDt, + + + timeType, + + + posterUrl, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{storeid,jdbcType=VARCHAR}, + + + #{storename,jdbcType=VARCHAR}, + + + #{name,jdbcType=VARCHAR}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{type,jdbcType=INTEGER}, + + + #{comsumemoney,jdbcType=DOUBLE}, + + + #{returnmoney,jdbcType=DOUBLE}, + + + #{percent,jdbcType=DOUBLE}, + + + #{startdt,jdbcType=TIMESTAMP}, + + + #{enddt,jdbcType=TIMESTAMP}, + + + #{timetype,jdbcType=INTEGER}, + + + #{posterurl,jdbcType=VARCHAR}, + + + + + update tb_pluss_activity_consum_return + + + userId = #{userid,jdbcType=INTEGER}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + storeId = #{storeid,jdbcType=VARCHAR}, + + + storeName = #{storename,jdbcType=VARCHAR}, + + + name = #{name,jdbcType=VARCHAR}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + type = #{type,jdbcType=INTEGER}, + + + comsumeMoney = #{comsumemoney,jdbcType=DOUBLE}, + + + returnMoney = #{returnmoney,jdbcType=DOUBLE}, + + + percent = #{percent,jdbcType=DOUBLE}, + + + startDt = #{startdt,jdbcType=TIMESTAMP}, + + + endDt = #{enddt,jdbcType=TIMESTAMP}, + + + timeType = #{timetype,jdbcType=INTEGER}, + + + posterUrl = #{posterurl,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_activity_consum_return + set userId = #{userid,jdbcType=INTEGER}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + storeId = #{storeid,jdbcType=VARCHAR}, + storeName = #{storename,jdbcType=VARCHAR}, + name = #{name,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + type = #{type,jdbcType=INTEGER}, + comsumeMoney = #{comsumemoney,jdbcType=DOUBLE}, + returnMoney = #{returnmoney,jdbcType=DOUBLE}, + percent = #{percent,jdbcType=DOUBLE}, + startDt = #{startdt,jdbcType=TIMESTAMP}, + endDt = #{enddt,jdbcType=TIMESTAMP}, + timeType = #{timetype,jdbcType=INTEGER}, + posterUrl = #{posterurl,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussActivityEnrollMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussActivityEnrollMapper.xml new file mode 100644 index 0000000..07079ed --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussActivityEnrollMapper.xml @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + id, merchantCode, merchantName, actName, actId, status, remark, createTime, updateTime, + auditTime, actType, deviceNo + + + + delete from tb_pluss_activity_enroll + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_activity_enroll (id, merchantCode, merchantName, + actName, actId, status, + remark, createTime, updateTime, + auditTime, actType, deviceNo + ) + values (#{id,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, #{merchantname,jdbcType=VARCHAR}, + #{actname,jdbcType=VARCHAR}, #{actid,jdbcType=INTEGER}, #{status,jdbcType=CHAR}, + #{remark,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}, + #{audittime,jdbcType=TIMESTAMP}, #{acttype,jdbcType=CHAR}, #{deviceno,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_activity_enroll + + + id, + + + merchantCode, + + + merchantName, + + + actName, + + + actId, + + + status, + + + remark, + + + createTime, + + + updateTime, + + + auditTime, + + + actType, + + + deviceNo, + + + + + #{id,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{actname,jdbcType=VARCHAR}, + + + #{actid,jdbcType=INTEGER}, + + + #{status,jdbcType=CHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{audittime,jdbcType=TIMESTAMP}, + + + #{acttype,jdbcType=CHAR}, + + + #{deviceno,jdbcType=VARCHAR}, + + + + + update tb_pluss_activity_enroll + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + actName = #{actname,jdbcType=VARCHAR}, + + + actId = #{actid,jdbcType=INTEGER}, + + + status = #{status,jdbcType=CHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + auditTime = #{audittime,jdbcType=TIMESTAMP}, + + + actType = #{acttype,jdbcType=CHAR}, + + + deviceNo = #{deviceno,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_activity_enroll + set merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + actName = #{actname,jdbcType=VARCHAR}, + actId = #{actid,jdbcType=INTEGER}, + status = #{status,jdbcType=CHAR}, + remark = #{remark,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + auditTime = #{audittime,jdbcType=TIMESTAMP}, + actType = #{acttype,jdbcType=CHAR}, + deviceNo = #{deviceno,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussActivityRechargeMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussActivityRechargeMapper.xml new file mode 100644 index 0000000..bc51ba2 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussActivityRechargeMapper.xml @@ -0,0 +1,199 @@ + + + + + + + + + + + + + + + + + + + + + id, userId, merchantCode, merchantName, rechargeMoney, giveMoney, startDt, endDt, + name, createDt, timeType, storeId, storeName, posterUrl + + + + delete from tb_pluss_activity_recharge + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_activity_recharge (id, userId, merchantCode, + merchantName, rechargeMoney, giveMoney, + startDt, endDt, name, + createDt, timeType, storeId, + storeName, posterUrl) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, + #{merchantname,jdbcType=VARCHAR}, #{rechargemoney,jdbcType=DOUBLE}, #{givemoney,jdbcType=DOUBLE}, + #{startdt,jdbcType=TIMESTAMP}, #{enddt,jdbcType=TIMESTAMP}, #{name,jdbcType=VARCHAR}, + #{createdt,jdbcType=TIMESTAMP}, #{timetype,jdbcType=INTEGER}, #{storeid,jdbcType=VARCHAR}, + #{storename,jdbcType=VARCHAR}, #{posterurl,jdbcType=VARCHAR}) + + + insert into tb_pluss_activity_recharge + + + id, + + + userId, + + + merchantCode, + + + merchantName, + + + rechargeMoney, + + + giveMoney, + + + startDt, + + + endDt, + + + name, + + + createDt, + + + timeType, + + + storeId, + + + storeName, + + + posterUrl, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{rechargemoney,jdbcType=DOUBLE}, + + + #{givemoney,jdbcType=DOUBLE}, + + + #{startdt,jdbcType=TIMESTAMP}, + + + #{enddt,jdbcType=TIMESTAMP}, + + + #{name,jdbcType=VARCHAR}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{timetype,jdbcType=INTEGER}, + + + #{storeid,jdbcType=VARCHAR}, + + + #{storename,jdbcType=VARCHAR}, + + + #{posterurl,jdbcType=VARCHAR}, + + + + + update tb_pluss_activity_recharge + + + userId = #{userid,jdbcType=INTEGER}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + rechargeMoney = #{rechargemoney,jdbcType=DOUBLE}, + + + giveMoney = #{givemoney,jdbcType=DOUBLE}, + + + startDt = #{startdt,jdbcType=TIMESTAMP}, + + + endDt = #{enddt,jdbcType=TIMESTAMP}, + + + name = #{name,jdbcType=VARCHAR}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + timeType = #{timetype,jdbcType=INTEGER}, + + + storeId = #{storeid,jdbcType=VARCHAR}, + + + storeName = #{storename,jdbcType=VARCHAR}, + + + posterUrl = #{posterurl,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_activity_recharge + set userId = #{userid,jdbcType=INTEGER}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + rechargeMoney = #{rechargemoney,jdbcType=DOUBLE}, + giveMoney = #{givemoney,jdbcType=DOUBLE}, + startDt = #{startdt,jdbcType=TIMESTAMP}, + endDt = #{enddt,jdbcType=TIMESTAMP}, + name = #{name,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + timeType = #{timetype,jdbcType=INTEGER}, + storeId = #{storeid,jdbcType=VARCHAR}, + storeName = #{storename,jdbcType=VARCHAR}, + posterUrl = #{posterurl,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussActivityRecommendMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussActivityRecommendMapper.xml new file mode 100644 index 0000000..aa85071 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussActivityRecommendMapper.xml @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + id, userId, name, firstMixRechargeMoney, recommendMoney, merchantCode, merchantName, + storeId, storeName, createDt, posterUrl + + + + delete from tb_pluss_activity_recommend + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_activity_recommend (id, userId, name, + firstMixRechargeMoney, recommendMoney, merchantCode, + merchantName, storeId, storeName, + createDt, posterUrl) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, + #{firstmixrechargemoney,jdbcType=DOUBLE}, #{recommendmoney,jdbcType=DOUBLE}, #{merchantcode,jdbcType=VARCHAR}, + #{merchantname,jdbcType=VARCHAR}, #{storeid,jdbcType=VARCHAR}, #{storename,jdbcType=VARCHAR}, + #{createdt,jdbcType=TIMESTAMP}, #{posterurl,jdbcType=VARCHAR}) + + + insert into tb_pluss_activity_recommend + + + id, + + + userId, + + + name, + + + firstMixRechargeMoney, + + + recommendMoney, + + + merchantCode, + + + merchantName, + + + storeId, + + + storeName, + + + createDt, + + + posterUrl, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{name,jdbcType=VARCHAR}, + + + #{firstmixrechargemoney,jdbcType=DOUBLE}, + + + #{recommendmoney,jdbcType=DOUBLE}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{storeid,jdbcType=VARCHAR}, + + + #{storename,jdbcType=VARCHAR}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{posterurl,jdbcType=VARCHAR}, + + + + + update tb_pluss_activity_recommend + + + userId = #{userid,jdbcType=INTEGER}, + + + name = #{name,jdbcType=VARCHAR}, + + + firstMixRechargeMoney = #{firstmixrechargemoney,jdbcType=DOUBLE}, + + + recommendMoney = #{recommendmoney,jdbcType=DOUBLE}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + storeId = #{storeid,jdbcType=VARCHAR}, + + + storeName = #{storename,jdbcType=VARCHAR}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + posterUrl = #{posterurl,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_activity_recommend + set userId = #{userid,jdbcType=INTEGER}, + name = #{name,jdbcType=VARCHAR}, + firstMixRechargeMoney = #{firstmixrechargemoney,jdbcType=DOUBLE}, + recommendMoney = #{recommendmoney,jdbcType=DOUBLE}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + storeId = #{storeid,jdbcType=VARCHAR}, + storeName = #{storename,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + posterUrl = #{posterurl,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussAgreementMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussAgreementMapper.xml new file mode 100644 index 0000000..a709232 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussAgreementMapper.xml @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + id, discern, name, createDt, createor + + + content + + + + delete from tb_pluss_agreement + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_agreement (id, discern, name, + createDt, createor, content + ) + values (#{id,jdbcType=INTEGER}, #{discern,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, + #{createdt,jdbcType=TIMESTAMP}, #{createor,jdbcType=VARCHAR}, #{content,jdbcType=LONGVARCHAR} + ) + + + insert into tb_pluss_agreement + + + id, + + + discern, + + + name, + + + createDt, + + + createor, + + + content, + + + + + #{id,jdbcType=INTEGER}, + + + #{discern,jdbcType=VARCHAR}, + + + #{name,jdbcType=VARCHAR}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{createor,jdbcType=VARCHAR}, + + + #{content,jdbcType=LONGVARCHAR}, + + + + + update tb_pluss_agreement + + + discern = #{discern,jdbcType=VARCHAR}, + + + name = #{name,jdbcType=VARCHAR}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + createor = #{createor,jdbcType=VARCHAR}, + + + content = #{content,jdbcType=LONGVARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_agreement + set discern = #{discern,jdbcType=VARCHAR}, + name = #{name,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + createor = #{createor,jdbcType=VARCHAR}, + content = #{content,jdbcType=LONGVARCHAR} + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_agreement + set discern = #{discern,jdbcType=VARCHAR}, + name = #{name,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + createor = #{createor,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussAliMccMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussAliMccMapper.xml new file mode 100644 index 0000000..58c74fa --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussAliMccMapper.xml @@ -0,0 +1,58 @@ + + + + + + + + + id, mccCode + + + + delete from tb_pluss_ali_mcc + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_ali_mcc (id, mccCode) + values (#{id,jdbcType=INTEGER}, #{mcccode,jdbcType=VARCHAR}) + + + insert into tb_pluss_ali_mcc + + + id, + + + mccCode, + + + + + #{id,jdbcType=INTEGER}, + + + #{mcccode,jdbcType=VARCHAR}, + + + + + update tb_pluss_ali_mcc + + + mccCode = #{mcccode,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_ali_mcc + set mccCode = #{mcccode,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussAppGuideMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussAppGuideMapper.xml new file mode 100644 index 0000000..1433df6 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussAppGuideMapper.xml @@ -0,0 +1,133 @@ + + + + + + + + + + + + + + + + id, code, name, createTime, updateTime, type + + + content + + + + delete from tb_pluss_app_guide + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_app_guide (id, code, name, + createTime, updateTime, type, + content) + values (#{id,jdbcType=INTEGER}, #{code,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}, #{type,jdbcType=VARCHAR}, + #{content,jdbcType=LONGVARCHAR}) + + + insert into tb_pluss_app_guide + + + id, + + + code, + + + name, + + + createTime, + + + updateTime, + + + type, + + + content, + + + + + #{id,jdbcType=INTEGER}, + + + #{code,jdbcType=VARCHAR}, + + + #{name,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{type,jdbcType=VARCHAR}, + + + #{content,jdbcType=LONGVARCHAR}, + + + + + update tb_pluss_app_guide + + + code = #{code,jdbcType=VARCHAR}, + + + name = #{name,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + type = #{type,jdbcType=VARCHAR}, + + + content = #{content,jdbcType=LONGVARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_app_guide + set code = #{code,jdbcType=VARCHAR}, + name = #{name,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + type = #{type,jdbcType=VARCHAR}, + content = #{content,jdbcType=LONGVARCHAR} + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_app_guide + set code = #{code,jdbcType=VARCHAR}, + name = #{name,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + type = #{type,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussAppMenuMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussAppMenuMapper.xml new file mode 100644 index 0000000..2f3e2ec --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussAppMenuMapper.xml @@ -0,0 +1,272 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + id, name, code, icon, menu_group, nav_code, nav_name, url, sort, visible, create_time, + update_time, isApplets, userName, path, isUniapp, isAndroidEnabled, isIphoneEnabled, + androidMinVersionName, iosMinVersionName + + + + delete from tb_pluss_app_menu + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_app_menu (id, name, code, + icon, menu_group, nav_code, + nav_name, url, sort, + visible, create_time, update_time, + isApplets, userName, path, + isUniapp, isAndroidEnabled, isIphoneEnabled, + androidMinVersionName, iosMinVersionName + ) + values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{code,jdbcType=VARCHAR}, + #{icon,jdbcType=VARCHAR}, #{menuGroup,jdbcType=VARCHAR}, #{navCode,jdbcType=VARCHAR}, + #{navName,jdbcType=VARCHAR}, #{url,jdbcType=VARCHAR}, #{sort,jdbcType=TINYINT}, + #{visible,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}, + #{isapplets,jdbcType=VARCHAR}, #{username,jdbcType=VARCHAR}, #{path,jdbcType=VARCHAR}, + #{isuniapp,jdbcType=VARCHAR}, #{isandroidenabled,jdbcType=VARCHAR}, #{isiphoneenabled,jdbcType=VARCHAR}, + #{androidminversionname,jdbcType=VARCHAR}, #{iosminversionname,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_app_menu + + + id, + + + name, + + + code, + + + icon, + + + menu_group, + + + nav_code, + + + nav_name, + + + url, + + + sort, + + + visible, + + + create_time, + + + update_time, + + + isApplets, + + + userName, + + + path, + + + isUniapp, + + + isAndroidEnabled, + + + isIphoneEnabled, + + + androidMinVersionName, + + + iosMinVersionName, + + + + + #{id,jdbcType=INTEGER}, + + + #{name,jdbcType=VARCHAR}, + + + #{code,jdbcType=VARCHAR}, + + + #{icon,jdbcType=VARCHAR}, + + + #{menuGroup,jdbcType=VARCHAR}, + + + #{navCode,jdbcType=VARCHAR}, + + + #{navName,jdbcType=VARCHAR}, + + + #{url,jdbcType=VARCHAR}, + + + #{sort,jdbcType=TINYINT}, + + + #{visible,jdbcType=VARCHAR}, + + + #{createTime,jdbcType=TIMESTAMP}, + + + #{updateTime,jdbcType=TIMESTAMP}, + + + #{isapplets,jdbcType=VARCHAR}, + + + #{username,jdbcType=VARCHAR}, + + + #{path,jdbcType=VARCHAR}, + + + #{isuniapp,jdbcType=VARCHAR}, + + + #{isandroidenabled,jdbcType=VARCHAR}, + + + #{isiphoneenabled,jdbcType=VARCHAR}, + + + #{androidminversionname,jdbcType=VARCHAR}, + + + #{iosminversionname,jdbcType=VARCHAR}, + + + + + update tb_pluss_app_menu + + + name = #{name,jdbcType=VARCHAR}, + + + code = #{code,jdbcType=VARCHAR}, + + + icon = #{icon,jdbcType=VARCHAR}, + + + menu_group = #{menuGroup,jdbcType=VARCHAR}, + + + nav_code = #{navCode,jdbcType=VARCHAR}, + + + nav_name = #{navName,jdbcType=VARCHAR}, + + + url = #{url,jdbcType=VARCHAR}, + + + sort = #{sort,jdbcType=TINYINT}, + + + visible = #{visible,jdbcType=VARCHAR}, + + + create_time = #{createTime,jdbcType=TIMESTAMP}, + + + update_time = #{updateTime,jdbcType=TIMESTAMP}, + + + isApplets = #{isapplets,jdbcType=VARCHAR}, + + + userName = #{username,jdbcType=VARCHAR}, + + + path = #{path,jdbcType=VARCHAR}, + + + isUniapp = #{isuniapp,jdbcType=VARCHAR}, + + + isAndroidEnabled = #{isandroidenabled,jdbcType=VARCHAR}, + + + isIphoneEnabled = #{isiphoneenabled,jdbcType=VARCHAR}, + + + androidMinVersionName = #{androidminversionname,jdbcType=VARCHAR}, + + + iosMinVersionName = #{iosminversionname,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_app_menu + set name = #{name,jdbcType=VARCHAR}, + code = #{code,jdbcType=VARCHAR}, + icon = #{icon,jdbcType=VARCHAR}, + menu_group = #{menuGroup,jdbcType=VARCHAR}, + nav_code = #{navCode,jdbcType=VARCHAR}, + nav_name = #{navName,jdbcType=VARCHAR}, + url = #{url,jdbcType=VARCHAR}, + sort = #{sort,jdbcType=TINYINT}, + visible = #{visible,jdbcType=VARCHAR}, + create_time = #{createTime,jdbcType=TIMESTAMP}, + update_time = #{updateTime,jdbcType=TIMESTAMP}, + isApplets = #{isapplets,jdbcType=VARCHAR}, + userName = #{username,jdbcType=VARCHAR}, + path = #{path,jdbcType=VARCHAR}, + isUniapp = #{isuniapp,jdbcType=VARCHAR}, + isAndroidEnabled = #{isandroidenabled,jdbcType=VARCHAR}, + isIphoneEnabled = #{isiphoneenabled,jdbcType=VARCHAR}, + androidMinVersionName = #{androidminversionname,jdbcType=VARCHAR}, + iosMinVersionName = #{iosminversionname,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussAppMenuUserTypeMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussAppMenuUserTypeMapper.xml new file mode 100644 index 0000000..eb9c49e --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussAppMenuUserTypeMapper.xml @@ -0,0 +1,106 @@ + + + + + + + + + + + + + id, dictValue, name, createTime, updateTime, nav_code + + + + delete from tb_pluss_app_menu_user_type + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_app_menu_user_type (id, dictValue, name, + createTime, updateTime, nav_code + ) + values (#{id,jdbcType=INTEGER}, #{dictvalue,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}, #{navCode,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_app_menu_user_type + + + id, + + + dictValue, + + + name, + + + createTime, + + + updateTime, + + + nav_code, + + + + + #{id,jdbcType=INTEGER}, + + + #{dictvalue,jdbcType=VARCHAR}, + + + #{name,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{navCode,jdbcType=VARCHAR}, + + + + + update tb_pluss_app_menu_user_type + + + dictValue = #{dictvalue,jdbcType=VARCHAR}, + + + name = #{name,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + nav_code = #{navCode,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_app_menu_user_type + set dictValue = #{dictvalue,jdbcType=VARCHAR}, + name = #{name,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + nav_code = #{navCode,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussAppVersionInfoMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussAppVersionInfoMapper.xml new file mode 100644 index 0000000..f123116 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussAppVersionInfoMapper.xml @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + id, platformCode, platformName, versionCode, versionName, url, updateInfo, forceUpdate, + createTime, updateTime + + + + delete from tb_pluss_app_version_info + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_app_version_info (id, platformCode, platformName, + versionCode, versionName, url, + updateInfo, forceUpdate, createTime, + updateTime) + values (#{id,jdbcType=INTEGER}, #{platformcode,jdbcType=INTEGER}, #{platformname,jdbcType=VARCHAR}, + #{versioncode,jdbcType=INTEGER}, #{versionname,jdbcType=VARCHAR}, #{url,jdbcType=VARCHAR}, + #{updateinfo,jdbcType=VARCHAR}, #{forceupdate,jdbcType=TINYINT}, #{createtime,jdbcType=TIMESTAMP}, + #{updatetime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_app_version_info + + + id, + + + platformCode, + + + platformName, + + + versionCode, + + + versionName, + + + url, + + + updateInfo, + + + forceUpdate, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{platformcode,jdbcType=INTEGER}, + + + #{platformname,jdbcType=VARCHAR}, + + + #{versioncode,jdbcType=INTEGER}, + + + #{versionname,jdbcType=VARCHAR}, + + + #{url,jdbcType=VARCHAR}, + + + #{updateinfo,jdbcType=VARCHAR}, + + + #{forceupdate,jdbcType=TINYINT}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_app_version_info + + + platformCode = #{platformcode,jdbcType=INTEGER}, + + + platformName = #{platformname,jdbcType=VARCHAR}, + + + versionCode = #{versioncode,jdbcType=INTEGER}, + + + versionName = #{versionname,jdbcType=VARCHAR}, + + + url = #{url,jdbcType=VARCHAR}, + + + updateInfo = #{updateinfo,jdbcType=VARCHAR}, + + + forceUpdate = #{forceupdate,jdbcType=TINYINT}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_app_version_info + set platformCode = #{platformcode,jdbcType=INTEGER}, + platformName = #{platformname,jdbcType=VARCHAR}, + versionCode = #{versioncode,jdbcType=INTEGER}, + versionName = #{versionname,jdbcType=VARCHAR}, + url = #{url,jdbcType=VARCHAR}, + updateInfo = #{updateinfo,jdbcType=VARCHAR}, + forceUpdate = #{forceupdate,jdbcType=TINYINT}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussAppletInfoMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussAppletInfoMapper.xml new file mode 100644 index 0000000..a3cdf21 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussAppletInfoMapper.xml @@ -0,0 +1,106 @@ + + + + + + + + + + + + + id, appid, ghId, secret, remark, createTime + + + + delete from tb_pluss_applet_info + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_applet_info (id, appid, ghId, + secret, remark, createTime + ) + values (#{id,jdbcType=INTEGER}, #{appid,jdbcType=VARCHAR}, #{ghid,jdbcType=VARCHAR}, + #{secret,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP} + ) + + + insert into tb_pluss_applet_info + + + id, + + + appid, + + + ghId, + + + secret, + + + remark, + + + createTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{appid,jdbcType=VARCHAR}, + + + #{ghid,jdbcType=VARCHAR}, + + + #{secret,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_applet_info + + + appid = #{appid,jdbcType=VARCHAR}, + + + ghId = #{ghid,jdbcType=VARCHAR}, + + + secret = #{secret,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_applet_info + set appid = #{appid,jdbcType=VARCHAR}, + ghId = #{ghid,jdbcType=VARCHAR}, + secret = #{secret,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussAppletStoreMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussAppletStoreMapper.xml new file mode 100644 index 0000000..c21f055 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussAppletStoreMapper.xml @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + id, storeName, icon, sort, type, url, createTime, appId + + + + delete from tb_pluss_applet_store + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_applet_store (id, storeName, icon, + sort, type, url, createTime, + appId) + values (#{id,jdbcType=INTEGER}, #{storename,jdbcType=VARCHAR}, #{icon,jdbcType=VARCHAR}, + #{sort,jdbcType=INTEGER}, #{type,jdbcType=INTEGER}, #{url,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, + #{appid,jdbcType=VARCHAR}) + + + insert into tb_pluss_applet_store + + + id, + + + storeName, + + + icon, + + + sort, + + + type, + + + url, + + + createTime, + + + appId, + + + + + #{id,jdbcType=INTEGER}, + + + #{storename,jdbcType=VARCHAR}, + + + #{icon,jdbcType=VARCHAR}, + + + #{sort,jdbcType=INTEGER}, + + + #{type,jdbcType=INTEGER}, + + + #{url,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{appid,jdbcType=VARCHAR}, + + + + + update tb_pluss_applet_store + + + storeName = #{storename,jdbcType=VARCHAR}, + + + icon = #{icon,jdbcType=VARCHAR}, + + + sort = #{sort,jdbcType=INTEGER}, + + + type = #{type,jdbcType=INTEGER}, + + + url = #{url,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + appId = #{appid,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_applet_store + set storeName = #{storename,jdbcType=VARCHAR}, + icon = #{icon,jdbcType=VARCHAR}, + sort = #{sort,jdbcType=INTEGER}, + type = #{type,jdbcType=INTEGER}, + url = #{url,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + appId = #{appid,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussAppletStoreUserMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussAppletStoreUserMapper.xml new file mode 100644 index 0000000..3bbeda3 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussAppletStoreUserMapper.xml @@ -0,0 +1,82 @@ + + + + + + + + + + + id, appleStoreId, userId, createTime + + + + delete from tb_pluss_applet_store_user + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_applet_store_user (id, appleStoreId, userId, + createTime) + values (#{id,jdbcType=INTEGER}, #{applestoreid,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, + #{createtime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_applet_store_user + + + id, + + + appleStoreId, + + + userId, + + + createTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{applestoreid,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_applet_store_user + + + appleStoreId = #{applestoreid,jdbcType=INTEGER}, + + + userId = #{userid,jdbcType=INTEGER}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_applet_store_user + set appleStoreId = #{applestoreid,jdbcType=INTEGER}, + userId = #{userid,jdbcType=INTEGER}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussAreaCityMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussAreaCityMapper.xml new file mode 100644 index 0000000..b1182f6 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussAreaCityMapper.xml @@ -0,0 +1,93 @@ + + + + + + + + + + + + id, type, areaName, parentAreaCode, areaCode + + + + delete from tb_pluss_area_city + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_area_city (id, type, areaName, + parentAreaCode, areaCode) + values (#{id,jdbcType=INTEGER}, #{type,jdbcType=VARCHAR}, #{areaname,jdbcType=VARCHAR}, + #{parentareacode,jdbcType=VARCHAR}, #{areacode,jdbcType=VARCHAR}) + + + insert into tb_pluss_area_city + + + id, + + + type, + + + areaName, + + + parentAreaCode, + + + areaCode, + + + + + #{id,jdbcType=INTEGER}, + + + #{type,jdbcType=VARCHAR}, + + + #{areaname,jdbcType=VARCHAR}, + + + #{parentareacode,jdbcType=VARCHAR}, + + + #{areacode,jdbcType=VARCHAR}, + + + + + update tb_pluss_area_city + + + type = #{type,jdbcType=VARCHAR}, + + + areaName = #{areaname,jdbcType=VARCHAR}, + + + parentAreaCode = #{parentareacode,jdbcType=VARCHAR}, + + + areaCode = #{areacode,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_area_city + set type = #{type,jdbcType=VARCHAR}, + areaName = #{areaname,jdbcType=VARCHAR}, + parentAreaCode = #{parentareacode,jdbcType=VARCHAR}, + areaCode = #{areacode,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussAreaMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussAreaMapper.xml new file mode 100644 index 0000000..8a41a43 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussAreaMapper.xml @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + F_area_no, F_area_name, F_aliasa, F_area_cups_no, F_city_no, F_x, F_y + + + + delete from tb_pluss_area + where F_area_no = #{fAreaNo,jdbcType=INTEGER} + + + insert into tb_pluss_area (F_area_no, F_area_name, F_aliasa, + F_area_cups_no, F_city_no, F_x, + F_y) + values (#{fAreaNo,jdbcType=INTEGER}, #{fAreaName,jdbcType=VARCHAR}, #{fAliasa,jdbcType=VARCHAR}, + #{fAreaCupsNo,jdbcType=INTEGER}, #{fCityNo,jdbcType=INTEGER}, #{fX,jdbcType=VARCHAR}, + #{fY,jdbcType=VARCHAR}) + + + insert into tb_pluss_area + + + F_area_no, + + + F_area_name, + + + F_aliasa, + + + F_area_cups_no, + + + F_city_no, + + + F_x, + + + F_y, + + + + + #{fAreaNo,jdbcType=INTEGER}, + + + #{fAreaName,jdbcType=VARCHAR}, + + + #{fAliasa,jdbcType=VARCHAR}, + + + #{fAreaCupsNo,jdbcType=INTEGER}, + + + #{fCityNo,jdbcType=INTEGER}, + + + #{fX,jdbcType=VARCHAR}, + + + #{fY,jdbcType=VARCHAR}, + + + + + update tb_pluss_area + + + F_area_name = #{fAreaName,jdbcType=VARCHAR}, + + + F_aliasa = #{fAliasa,jdbcType=VARCHAR}, + + + F_area_cups_no = #{fAreaCupsNo,jdbcType=INTEGER}, + + + F_city_no = #{fCityNo,jdbcType=INTEGER}, + + + F_x = #{fX,jdbcType=VARCHAR}, + + + F_y = #{fY,jdbcType=VARCHAR}, + + + where F_area_no = #{fAreaNo,jdbcType=INTEGER} + + + update tb_pluss_area + set F_area_name = #{fAreaName,jdbcType=VARCHAR}, + F_aliasa = #{fAliasa,jdbcType=VARCHAR}, + F_area_cups_no = #{fAreaCupsNo,jdbcType=INTEGER}, + F_city_no = #{fCityNo,jdbcType=INTEGER}, + F_x = #{fX,jdbcType=VARCHAR}, + F_y = #{fY,jdbcType=VARCHAR} + where F_area_no = #{fAreaNo,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussBank4CacheMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussBank4CacheMapper.xml new file mode 100644 index 0000000..96df681 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussBank4CacheMapper.xml @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + id, name, phone, idCardNo, bankCardNo, status, remark, createTime, updateTime + + + + delete from tb_pluss_bank4_cache + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_bank4_cache (id, name, phone, + idCardNo, bankCardNo, status, + remark, createTime, updateTime + ) + values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{phone,jdbcType=VARCHAR}, + #{idcardno,jdbcType=VARCHAR}, #{bankcardno,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, + #{remark,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP} + ) + + + insert into tb_pluss_bank4_cache + + + id, + + + name, + + + phone, + + + idCardNo, + + + bankCardNo, + + + status, + + + remark, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{name,jdbcType=VARCHAR}, + + + #{phone,jdbcType=VARCHAR}, + + + #{idcardno,jdbcType=VARCHAR}, + + + #{bankcardno,jdbcType=VARCHAR}, + + + #{status,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_bank4_cache + + + name = #{name,jdbcType=VARCHAR}, + + + phone = #{phone,jdbcType=VARCHAR}, + + + idCardNo = #{idcardno,jdbcType=VARCHAR}, + + + bankCardNo = #{bankcardno,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_bank4_cache + set name = #{name,jdbcType=VARCHAR}, + phone = #{phone,jdbcType=VARCHAR}, + idCardNo = #{idcardno,jdbcType=VARCHAR}, + bankCardNo = #{bankcardno,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussBankBranchLklMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussBankBranchLklMapper.xml new file mode 100644 index 0000000..32a5c37 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussBankBranchLklMapper.xml @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + insert into tb_pluss_bank_branch_lkl (id, create_time, optimistic, + update_time, area_code, bank_no, + branch_bank_name, branch_bank_no, clear_no + ) + values (#{id,jdbcType=VARCHAR}, #{createTime,jdbcType=VARCHAR}, #{optimistic,jdbcType=VARCHAR}, + #{updateTime,jdbcType=VARCHAR}, #{areaCode,jdbcType=VARCHAR}, #{bankNo,jdbcType=VARCHAR}, + #{branchBankName,jdbcType=VARCHAR}, #{branchBankNo,jdbcType=VARCHAR}, #{clearNo,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_bank_branch_lkl + + + id, + + + create_time, + + + optimistic, + + + update_time, + + + area_code, + + + bank_no, + + + branch_bank_name, + + + branch_bank_no, + + + clear_no, + + + + + #{id,jdbcType=VARCHAR}, + + + #{createTime,jdbcType=VARCHAR}, + + + #{optimistic,jdbcType=VARCHAR}, + + + #{updateTime,jdbcType=VARCHAR}, + + + #{areaCode,jdbcType=VARCHAR}, + + + #{bankNo,jdbcType=VARCHAR}, + + + #{branchBankName,jdbcType=VARCHAR}, + + + #{branchBankNo,jdbcType=VARCHAR}, + + + #{clearNo,jdbcType=VARCHAR}, + + + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussBankCardMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussBankCardMapper.xml new file mode 100644 index 0000000..4076658 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussBankCardMapper.xml @@ -0,0 +1,235 @@ + + + + + + + + + + + + + + + + + + + + + + + + id, userId, bankHolder, bankCardNo, bankName, branchName, accountType, contactLine, + branchProvince, branchCity, branchArea, bankAddressNo, phone, imgUrl, licenseUrl, + createTime, updateTime + + + + delete from tb_pluss_bank_card + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_bank_card (id, userId, bankHolder, + bankCardNo, bankName, branchName, + accountType, contactLine, branchProvince, + branchCity, branchArea, bankAddressNo, + phone, imgUrl, licenseUrl, + createTime, updateTime) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=VARCHAR}, #{bankholder,jdbcType=VARCHAR}, + #{bankcardno,jdbcType=VARCHAR}, #{bankname,jdbcType=VARCHAR}, #{branchname,jdbcType=VARCHAR}, + #{accounttype,jdbcType=VARCHAR}, #{contactline,jdbcType=VARCHAR}, #{branchprovince,jdbcType=VARCHAR}, + #{branchcity,jdbcType=VARCHAR}, #{brancharea,jdbcType=VARCHAR}, #{bankaddressno,jdbcType=VARCHAR}, + #{phone,jdbcType=VARCHAR}, #{imgurl,jdbcType=VARCHAR}, #{licenseurl,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_bank_card + + + id, + + + userId, + + + bankHolder, + + + bankCardNo, + + + bankName, + + + branchName, + + + accountType, + + + contactLine, + + + branchProvince, + + + branchCity, + + + branchArea, + + + bankAddressNo, + + + phone, + + + imgUrl, + + + licenseUrl, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=VARCHAR}, + + + #{bankholder,jdbcType=VARCHAR}, + + + #{bankcardno,jdbcType=VARCHAR}, + + + #{bankname,jdbcType=VARCHAR}, + + + #{branchname,jdbcType=VARCHAR}, + + + #{accounttype,jdbcType=VARCHAR}, + + + #{contactline,jdbcType=VARCHAR}, + + + #{branchprovince,jdbcType=VARCHAR}, + + + #{branchcity,jdbcType=VARCHAR}, + + + #{brancharea,jdbcType=VARCHAR}, + + + #{bankaddressno,jdbcType=VARCHAR}, + + + #{phone,jdbcType=VARCHAR}, + + + #{imgurl,jdbcType=VARCHAR}, + + + #{licenseurl,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_bank_card + + + userId = #{userid,jdbcType=VARCHAR}, + + + bankHolder = #{bankholder,jdbcType=VARCHAR}, + + + bankCardNo = #{bankcardno,jdbcType=VARCHAR}, + + + bankName = #{bankname,jdbcType=VARCHAR}, + + + branchName = #{branchname,jdbcType=VARCHAR}, + + + accountType = #{accounttype,jdbcType=VARCHAR}, + + + contactLine = #{contactline,jdbcType=VARCHAR}, + + + branchProvince = #{branchprovince,jdbcType=VARCHAR}, + + + branchCity = #{branchcity,jdbcType=VARCHAR}, + + + branchArea = #{brancharea,jdbcType=VARCHAR}, + + + bankAddressNo = #{bankaddressno,jdbcType=VARCHAR}, + + + phone = #{phone,jdbcType=VARCHAR}, + + + imgUrl = #{imgurl,jdbcType=VARCHAR}, + + + licenseUrl = #{licenseurl,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_bank_card + set userId = #{userid,jdbcType=VARCHAR}, + bankHolder = #{bankholder,jdbcType=VARCHAR}, + bankCardNo = #{bankcardno,jdbcType=VARCHAR}, + bankName = #{bankname,jdbcType=VARCHAR}, + branchName = #{branchname,jdbcType=VARCHAR}, + accountType = #{accounttype,jdbcType=VARCHAR}, + contactLine = #{contactline,jdbcType=VARCHAR}, + branchProvince = #{branchprovince,jdbcType=VARCHAR}, + branchCity = #{branchcity,jdbcType=VARCHAR}, + branchArea = #{brancharea,jdbcType=VARCHAR}, + bankAddressNo = #{bankaddressno,jdbcType=VARCHAR}, + phone = #{phone,jdbcType=VARCHAR}, + imgUrl = #{imgurl,jdbcType=VARCHAR}, + licenseUrl = #{licenseurl,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussBankCodeSxfMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussBankCodeSxfMapper.xml new file mode 100644 index 0000000..504ce10 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussBankCodeSxfMapper.xml @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + id, bank_code, cnaps_code, cnaps_name, bank_name, org_code, province_code, province_name, + city_code, city_name + + + + delete from tb_pluss_bank_code_sxf + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_bank_code_sxf (id, bank_code, cnaps_code, + cnaps_name, bank_name, org_code, + province_code, province_name, city_code, + city_name) + values (#{id,jdbcType=INTEGER}, #{bankCode,jdbcType=VARCHAR}, #{cnapsCode,jdbcType=VARCHAR}, + #{cnapsName,jdbcType=VARCHAR}, #{bankName,jdbcType=VARCHAR}, #{orgCode,jdbcType=VARCHAR}, + #{provinceCode,jdbcType=VARCHAR}, #{provinceName,jdbcType=VARCHAR}, #{cityCode,jdbcType=VARCHAR}, + #{cityName,jdbcType=VARCHAR}) + + + insert into tb_pluss_bank_code_sxf + + + id, + + + bank_code, + + + cnaps_code, + + + cnaps_name, + + + bank_name, + + + org_code, + + + province_code, + + + province_name, + + + city_code, + + + city_name, + + + + + #{id,jdbcType=INTEGER}, + + + #{bankCode,jdbcType=VARCHAR}, + + + #{cnapsCode,jdbcType=VARCHAR}, + + + #{cnapsName,jdbcType=VARCHAR}, + + + #{bankName,jdbcType=VARCHAR}, + + + #{orgCode,jdbcType=VARCHAR}, + + + #{provinceCode,jdbcType=VARCHAR}, + + + #{provinceName,jdbcType=VARCHAR}, + + + #{cityCode,jdbcType=VARCHAR}, + + + #{cityName,jdbcType=VARCHAR}, + + + + + update tb_pluss_bank_code_sxf + + + bank_code = #{bankCode,jdbcType=VARCHAR}, + + + cnaps_code = #{cnapsCode,jdbcType=VARCHAR}, + + + cnaps_name = #{cnapsName,jdbcType=VARCHAR}, + + + bank_name = #{bankName,jdbcType=VARCHAR}, + + + org_code = #{orgCode,jdbcType=VARCHAR}, + + + province_code = #{provinceCode,jdbcType=VARCHAR}, + + + province_name = #{provinceName,jdbcType=VARCHAR}, + + + city_code = #{cityCode,jdbcType=VARCHAR}, + + + city_name = #{cityName,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_bank_code_sxf + set bank_code = #{bankCode,jdbcType=VARCHAR}, + cnaps_code = #{cnapsCode,jdbcType=VARCHAR}, + cnaps_name = #{cnapsName,jdbcType=VARCHAR}, + bank_name = #{bankName,jdbcType=VARCHAR}, + org_code = #{orgCode,jdbcType=VARCHAR}, + province_code = #{provinceCode,jdbcType=VARCHAR}, + province_name = #{provinceName,jdbcType=VARCHAR}, + city_code = #{cityCode,jdbcType=VARCHAR}, + city_name = #{cityName,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussBankCodeYsMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussBankCodeYsMapper.xml new file mode 100644 index 0000000..541d41d --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussBankCodeYsMapper.xml @@ -0,0 +1,54 @@ + + + + + + + + + + + + insert into tb_pluss_bank_code_ys (contactLine, branchName, bankType, + bankName, cityCode) + values (#{contactline,jdbcType=VARCHAR}, #{branchname,jdbcType=VARCHAR}, #{banktype,jdbcType=VARCHAR}, + #{bankname,jdbcType=VARCHAR}, #{citycode,jdbcType=VARCHAR}) + + + insert into tb_pluss_bank_code_ys + + + contactLine, + + + branchName, + + + bankType, + + + bankName, + + + cityCode, + + + + + #{contactline,jdbcType=VARCHAR}, + + + #{branchname,jdbcType=VARCHAR}, + + + #{banktype,jdbcType=VARCHAR}, + + + #{bankname,jdbcType=VARCHAR}, + + + #{citycode,jdbcType=VARCHAR}, + + + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussBankRegionLklMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussBankRegionLklMapper.xml new file mode 100644 index 0000000..1c91f8b --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussBankRegionLklMapper.xml @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + insert into tb_pluss_bank_region_lkl (id, create_time, optimistic, + update_time, code, name, + parent_code) + values (#{id,jdbcType=VARCHAR}, #{createTime,jdbcType=VARCHAR}, #{optimistic,jdbcType=VARCHAR}, + #{updateTime,jdbcType=VARCHAR}, #{code,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, + #{parentCode,jdbcType=VARCHAR}) + + + insert into tb_pluss_bank_region_lkl + + + id, + + + create_time, + + + optimistic, + + + update_time, + + + code, + + + name, + + + parent_code, + + + + + #{id,jdbcType=VARCHAR}, + + + #{createTime,jdbcType=VARCHAR}, + + + #{optimistic,jdbcType=VARCHAR}, + + + #{updateTime,jdbcType=VARCHAR}, + + + #{code,jdbcType=VARCHAR}, + + + #{name,jdbcType=VARCHAR}, + + + #{parentCode,jdbcType=VARCHAR}, + + + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussBankUnionpayCodeMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussBankUnionpayCodeMapper.xml new file mode 100644 index 0000000..d79074e --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussBankUnionpayCodeMapper.xml @@ -0,0 +1,140 @@ + + + + + + + + + + + + + + + + F_unionpay_code, F_bank_area, F_bank_city, F_cft_area_code, F_cft_city_code, F_branch_name, + F_bank_name, F_x, F_y + + + + delete from tb_pluss_bank_unionpay_code + where F_unionpay_code = #{fUnionpayCode,jdbcType=VARCHAR} + + + insert into tb_pluss_bank_unionpay_code (F_unionpay_code, F_bank_area, F_bank_city, + F_cft_area_code, F_cft_city_code, F_branch_name, + F_bank_name, F_x, F_y) + values (#{fUnionpayCode,jdbcType=VARCHAR}, #{fBankArea,jdbcType=VARCHAR}, #{fBankCity,jdbcType=VARCHAR}, + #{fCftAreaCode,jdbcType=VARCHAR}, #{fCftCityCode,jdbcType=VARCHAR}, #{fBranchName,jdbcType=VARCHAR}, + #{fBankName,jdbcType=VARCHAR}, #{fX,jdbcType=VARCHAR}, #{fY,jdbcType=VARCHAR}) + + + insert into tb_pluss_bank_unionpay_code + + + F_unionpay_code, + + + F_bank_area, + + + F_bank_city, + + + F_cft_area_code, + + + F_cft_city_code, + + + F_branch_name, + + + F_bank_name, + + + F_x, + + + F_y, + + + + + #{fUnionpayCode,jdbcType=VARCHAR}, + + + #{fBankArea,jdbcType=VARCHAR}, + + + #{fBankCity,jdbcType=VARCHAR}, + + + #{fCftAreaCode,jdbcType=VARCHAR}, + + + #{fCftCityCode,jdbcType=VARCHAR}, + + + #{fBranchName,jdbcType=VARCHAR}, + + + #{fBankName,jdbcType=VARCHAR}, + + + #{fX,jdbcType=VARCHAR}, + + + #{fY,jdbcType=VARCHAR}, + + + + + update tb_pluss_bank_unionpay_code + + + F_bank_area = #{fBankArea,jdbcType=VARCHAR}, + + + F_bank_city = #{fBankCity,jdbcType=VARCHAR}, + + + F_cft_area_code = #{fCftAreaCode,jdbcType=VARCHAR}, + + + F_cft_city_code = #{fCftCityCode,jdbcType=VARCHAR}, + + + F_branch_name = #{fBranchName,jdbcType=VARCHAR}, + + + F_bank_name = #{fBankName,jdbcType=VARCHAR}, + + + F_x = #{fX,jdbcType=VARCHAR}, + + + F_y = #{fY,jdbcType=VARCHAR}, + + + where F_unionpay_code = #{fUnionpayCode,jdbcType=VARCHAR} + + + update tb_pluss_bank_unionpay_code + set F_bank_area = #{fBankArea,jdbcType=VARCHAR}, + F_bank_city = #{fBankCity,jdbcType=VARCHAR}, + F_cft_area_code = #{fCftAreaCode,jdbcType=VARCHAR}, + F_cft_city_code = #{fCftCityCode,jdbcType=VARCHAR}, + F_branch_name = #{fBranchName,jdbcType=VARCHAR}, + F_bank_name = #{fBankName,jdbcType=VARCHAR}, + F_x = #{fX,jdbcType=VARCHAR}, + F_y = #{fY,jdbcType=VARCHAR} + where F_unionpay_code = #{fUnionpayCode,jdbcType=VARCHAR} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussBannerMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussBannerMapper.xml new file mode 100644 index 0000000..3332d35 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussBannerMapper.xml @@ -0,0 +1,106 @@ + + + + + + + + + + + + + id, picUrl, seq, jumpUrl, type, status + + + + delete from tb_pluss_banner + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_banner (id, picUrl, seq, + jumpUrl, type, status + ) + values (#{id,jdbcType=INTEGER}, #{picurl,jdbcType=VARCHAR}, #{seq,jdbcType=INTEGER}, + #{jumpurl,jdbcType=VARCHAR}, #{type,jdbcType=VARCHAR}, #{status,jdbcType=INTEGER} + ) + + + insert into tb_pluss_banner + + + id, + + + picUrl, + + + seq, + + + jumpUrl, + + + type, + + + status, + + + + + #{id,jdbcType=INTEGER}, + + + #{picurl,jdbcType=VARCHAR}, + + + #{seq,jdbcType=INTEGER}, + + + #{jumpurl,jdbcType=VARCHAR}, + + + #{type,jdbcType=VARCHAR}, + + + #{status,jdbcType=INTEGER}, + + + + + update tb_pluss_banner + + + picUrl = #{picurl,jdbcType=VARCHAR}, + + + seq = #{seq,jdbcType=INTEGER}, + + + jumpUrl = #{jumpurl,jdbcType=VARCHAR}, + + + type = #{type,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=INTEGER}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_banner + set picUrl = #{picurl,jdbcType=VARCHAR}, + seq = #{seq,jdbcType=INTEGER}, + jumpUrl = #{jumpurl,jdbcType=VARCHAR}, + type = #{type,jdbcType=VARCHAR}, + status = #{status,jdbcType=INTEGER} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussBestNewActivityMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussBestNewActivityMapper.xml new file mode 100644 index 0000000..066f349 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussBestNewActivityMapper.xml @@ -0,0 +1,181 @@ + + + + + + + + + + + + + + + + + + + + id, title, desc, status, type, updateTime, updateor, seq + + + content, imgs, url + + + + delete from tb_pluss_best_new_activity + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_best_new_activity (id, title, desc, + status, type, updateTime, + updateor, seq, content, + imgs, url) + values (#{id,jdbcType=INTEGER}, #{title,jdbcType=VARCHAR}, #{desc,jdbcType=VARCHAR}, + #{status,jdbcType=VARCHAR}, #{type,jdbcType=VARCHAR}, #{updatetime,jdbcType=TIMESTAMP}, + #{updateor,jdbcType=VARCHAR}, #{seq,jdbcType=INTEGER}, #{content,jdbcType=LONGVARCHAR}, + #{imgs,jdbcType=LONGVARCHAR}, #{url,jdbcType=LONGVARCHAR}) + + + insert into tb_pluss_best_new_activity + + + id, + + + title, + + + desc, + + + status, + + + type, + + + updateTime, + + + updateor, + + + seq, + + + content, + + + imgs, + + + url, + + + + + #{id,jdbcType=INTEGER}, + + + #{title,jdbcType=VARCHAR}, + + + #{desc,jdbcType=VARCHAR}, + + + #{status,jdbcType=VARCHAR}, + + + #{type,jdbcType=VARCHAR}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{updateor,jdbcType=VARCHAR}, + + + #{seq,jdbcType=INTEGER}, + + + #{content,jdbcType=LONGVARCHAR}, + + + #{imgs,jdbcType=LONGVARCHAR}, + + + #{url,jdbcType=LONGVARCHAR}, + + + + + update tb_pluss_best_new_activity + + + title = #{title,jdbcType=VARCHAR}, + + + desc = #{desc,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=VARCHAR}, + + + type = #{type,jdbcType=VARCHAR}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + updateor = #{updateor,jdbcType=VARCHAR}, + + + seq = #{seq,jdbcType=INTEGER}, + + + content = #{content,jdbcType=LONGVARCHAR}, + + + imgs = #{imgs,jdbcType=LONGVARCHAR}, + + + url = #{url,jdbcType=LONGVARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_best_new_activity + set title = #{title,jdbcType=VARCHAR}, + desc = #{desc,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + type = #{type,jdbcType=VARCHAR}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + updateor = #{updateor,jdbcType=VARCHAR}, + seq = #{seq,jdbcType=INTEGER}, + content = #{content,jdbcType=LONGVARCHAR}, + imgs = #{imgs,jdbcType=LONGVARCHAR}, + url = #{url,jdbcType=LONGVARCHAR} + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_best_new_activity + set title = #{title,jdbcType=VARCHAR}, + desc = #{desc,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + type = #{type,jdbcType=VARCHAR}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + updateor = #{updateor,jdbcType=VARCHAR}, + seq = #{seq,jdbcType=INTEGER} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussBillSendRecordMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussBillSendRecordMapper.xml new file mode 100644 index 0000000..522c94f --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussBillSendRecordMapper.xml @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + id, userId, startTime, endTime, email, status, createTime, updateTime + + + + delete from tb_pluss_bill_send_record + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_bill_send_record (id, userId, startTime, + endTime, email, status, + createTime, updateTime) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{starttime,jdbcType=TIMESTAMP}, + #{endtime,jdbcType=TIMESTAMP}, #{email,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_bill_send_record + + + id, + + + userId, + + + startTime, + + + endTime, + + + email, + + + status, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{starttime,jdbcType=TIMESTAMP}, + + + #{endtime,jdbcType=TIMESTAMP}, + + + #{email,jdbcType=VARCHAR}, + + + #{status,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_bill_send_record + + + userId = #{userid,jdbcType=INTEGER}, + + + startTime = #{starttime,jdbcType=TIMESTAMP}, + + + endTime = #{endtime,jdbcType=TIMESTAMP}, + + + email = #{email,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_bill_send_record + set userId = #{userid,jdbcType=INTEGER}, + startTime = #{starttime,jdbcType=TIMESTAMP}, + endTime = #{endtime,jdbcType=TIMESTAMP}, + email = #{email,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussBusinessSceneLklMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussBusinessSceneLklMapper.xml new file mode 100644 index 0000000..829d094 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussBusinessSceneLklMapper.xml @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + insert into tb_pluss_business_scene_lkl (id, create_time, optimistic, + update_time, code, name, + business_scene) + values (#{id,jdbcType=VARCHAR}, #{createTime,jdbcType=VARCHAR}, #{optimistic,jdbcType=VARCHAR}, + #{updateTime,jdbcType=VARCHAR}, #{code,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, + #{businessScene,jdbcType=VARCHAR}) + + + insert into tb_pluss_business_scene_lkl + + + id, + + + create_time, + + + optimistic, + + + update_time, + + + code, + + + name, + + + business_scene, + + + + + #{id,jdbcType=VARCHAR}, + + + #{createTime,jdbcType=VARCHAR}, + + + #{optimistic,jdbcType=VARCHAR}, + + + #{updateTime,jdbcType=VARCHAR}, + + + #{code,jdbcType=VARCHAR}, + + + #{name,jdbcType=VARCHAR}, + + + #{businessScene,jdbcType=VARCHAR}, + + + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussBusinessSmallLklMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussBusinessSmallLklMapper.xml new file mode 100644 index 0000000..b8378dd --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussBusinessSmallLklMapper.xml @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + insert into tb_pluss_business_small_lkl (id, create_time, optimistic, + update_time, code, name, + parent_code) + values (#{id,jdbcType=VARCHAR}, #{createTime,jdbcType=VARCHAR}, #{optimistic,jdbcType=VARCHAR}, + #{updateTime,jdbcType=VARCHAR}, #{code,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, + #{parentCode,jdbcType=VARCHAR}) + + + insert into tb_pluss_business_small_lkl + + + id, + + + create_time, + + + optimistic, + + + update_time, + + + code, + + + name, + + + parent_code, + + + + + #{id,jdbcType=VARCHAR}, + + + #{createTime,jdbcType=VARCHAR}, + + + #{optimistic,jdbcType=VARCHAR}, + + + #{updateTime,jdbcType=VARCHAR}, + + + #{code,jdbcType=VARCHAR}, + + + #{name,jdbcType=VARCHAR}, + + + #{parentCode,jdbcType=VARCHAR}, + + + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussCacheInfoMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussCacheInfoMapper.xml new file mode 100644 index 0000000..34a875e --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussCacheInfoMapper.xml @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + id, keyCode, appId, appSercet, accessToken, refreshToken, expires_in, createTime + + + + delete from tb_pluss_cache_info + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_cache_info (id, keyCode, appId, + appSercet, accessToken, refreshToken, + expires_in, createTime) + values (#{id,jdbcType=INTEGER}, #{keycode,jdbcType=VARCHAR}, #{appid,jdbcType=VARCHAR}, + #{appsercet,jdbcType=VARCHAR}, #{accesstoken,jdbcType=VARCHAR}, #{refreshtoken,jdbcType=VARCHAR}, + #{expiresIn,jdbcType=BIGINT}, #{createtime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_cache_info + + + id, + + + keyCode, + + + appId, + + + appSercet, + + + accessToken, + + + refreshToken, + + + expires_in, + + + createTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{keycode,jdbcType=VARCHAR}, + + + #{appid,jdbcType=VARCHAR}, + + + #{appsercet,jdbcType=VARCHAR}, + + + #{accesstoken,jdbcType=VARCHAR}, + + + #{refreshtoken,jdbcType=VARCHAR}, + + + #{expiresIn,jdbcType=BIGINT}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_cache_info + + + keyCode = #{keycode,jdbcType=VARCHAR}, + + + appId = #{appid,jdbcType=VARCHAR}, + + + appSercet = #{appsercet,jdbcType=VARCHAR}, + + + accessToken = #{accesstoken,jdbcType=VARCHAR}, + + + refreshToken = #{refreshtoken,jdbcType=VARCHAR}, + + + expires_in = #{expiresIn,jdbcType=BIGINT}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_cache_info + set keyCode = #{keycode,jdbcType=VARCHAR}, + appId = #{appid,jdbcType=VARCHAR}, + appSercet = #{appsercet,jdbcType=VARCHAR}, + accessToken = #{accesstoken,jdbcType=VARCHAR}, + refreshToken = #{refreshtoken,jdbcType=VARCHAR}, + expires_in = #{expiresIn,jdbcType=BIGINT}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussCallbackDataMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussCallbackDataMapper.xml new file mode 100644 index 0000000..59bb5c2 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussCallbackDataMapper.xml @@ -0,0 +1,83 @@ + + + + + + + + + + + + id, table + + + origin + + + + delete from tb_pluss_callback_data + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_callback_data (id, table, origin + ) + values (#{id,jdbcType=INTEGER}, #{table,jdbcType=VARCHAR}, #{origin,jdbcType=LONGVARCHAR} + ) + + + insert into tb_pluss_callback_data + + + id, + + + table, + + + origin, + + + + + #{id,jdbcType=INTEGER}, + + + #{table,jdbcType=VARCHAR}, + + + #{origin,jdbcType=LONGVARCHAR}, + + + + + update tb_pluss_callback_data + + + table = #{table,jdbcType=VARCHAR}, + + + origin = #{origin,jdbcType=LONGVARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_callback_data + set table = #{table,jdbcType=VARCHAR}, + origin = #{origin,jdbcType=LONGVARCHAR} + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_callback_data + set table = #{table,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussCashAccountMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussCashAccountMapper.xml new file mode 100644 index 0000000..ae7bb79 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussCashAccountMapper.xml @@ -0,0 +1,111 @@ + + + + + + + + + + + + + id, userId, accountNo, accountName, status, createTime + + + + delete from tb_pluss_cash_account + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_cash_account (id, userId, accountNo, + accountName, status, createTime + ) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{accountno,jdbcType=VARCHAR}, + #{accountname,jdbcType=VARCHAR}, #{status,jdbcType=INTEGER}, #{createtime,jdbcType=TIMESTAMP} + ) + + + insert into tb_pluss_cash_account + + + id, + + + userId, + + + accountNo, + + + accountName, + + + status, + + + createTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{accountno,jdbcType=VARCHAR}, + + + #{accountname,jdbcType=VARCHAR}, + + + #{status,jdbcType=INTEGER}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_cash_account + + + userId = #{userid,jdbcType=INTEGER}, + + + accountNo = #{accountno,jdbcType=VARCHAR}, + + + accountName = #{accountname,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=INTEGER}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_cash_account + set userId = #{userid,jdbcType=INTEGER}, + accountNo = #{accountno,jdbcType=VARCHAR}, + accountName = #{accountname,jdbcType=VARCHAR}, + status = #{status,jdbcType=INTEGER}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussCashMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussCashMapper.xml new file mode 100644 index 0000000..3d4105c --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussCashMapper.xml @@ -0,0 +1,328 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, userId, userName, merchantCode, merchantName, accountNo, accountName, cashAmt, + status, reason, createDt, updateDt, logo, cashNumber, backNo, backDt, updator, type, + baseServiceCharge, ratioCharge, virRealCashAmt, virTotalCharge, cashStatus, cashStatusNow + + + + delete from tb_pluss_cash + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_cash (id, userId, userName, + merchantCode, merchantName, accountNo, + accountName, cashAmt, status, + reason, createDt, updateDt, + logo, cashNumber, backNo, + backDt, updator, type, + baseServiceCharge, ratioCharge, virRealCashAmt, + virTotalCharge, cashStatus, cashStatusNow + ) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{username,jdbcType=VARCHAR}, + #{merchantcode,jdbcType=VARCHAR}, #{merchantname,jdbcType=VARCHAR}, #{accountno,jdbcType=VARCHAR}, + #{accountname,jdbcType=VARCHAR}, #{cashamt,jdbcType=DECIMAL}, #{status,jdbcType=INTEGER}, + #{reason,jdbcType=VARCHAR}, #{createdt,jdbcType=TIMESTAMP}, #{updatedt,jdbcType=TIMESTAMP}, + #{logo,jdbcType=VARCHAR}, #{cashnumber,jdbcType=VARCHAR}, #{backno,jdbcType=VARCHAR}, + #{backdt,jdbcType=TIMESTAMP}, #{updator,jdbcType=VARCHAR}, #{type,jdbcType=INTEGER}, + #{baseservicecharge,jdbcType=DECIMAL}, #{ratiocharge,jdbcType=DECIMAL}, #{virrealcashamt,jdbcType=DECIMAL}, + #{virtotalcharge,jdbcType=DECIMAL}, #{cashstatus,jdbcType=VARCHAR}, #{cashstatusnow,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_cash + + + id, + + + userId, + + + userName, + + + merchantCode, + + + merchantName, + + + accountNo, + + + accountName, + + + cashAmt, + + + status, + + + reason, + + + createDt, + + + updateDt, + + + logo, + + + cashNumber, + + + backNo, + + + backDt, + + + updator, + + + type, + + + baseServiceCharge, + + + ratioCharge, + + + virRealCashAmt, + + + virTotalCharge, + + + cashStatus, + + + cashStatusNow, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{username,jdbcType=VARCHAR}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{accountno,jdbcType=VARCHAR}, + + + #{accountname,jdbcType=VARCHAR}, + + + #{cashamt,jdbcType=DECIMAL}, + + + #{status,jdbcType=INTEGER}, + + + #{reason,jdbcType=VARCHAR}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{updatedt,jdbcType=TIMESTAMP}, + + + #{logo,jdbcType=VARCHAR}, + + + #{cashnumber,jdbcType=VARCHAR}, + + + #{backno,jdbcType=VARCHAR}, + + + #{backdt,jdbcType=TIMESTAMP}, + + + #{updator,jdbcType=VARCHAR}, + + + #{type,jdbcType=INTEGER}, + + + #{baseservicecharge,jdbcType=DECIMAL}, + + + #{ratiocharge,jdbcType=DECIMAL}, + + + #{virrealcashamt,jdbcType=DECIMAL}, + + + #{virtotalcharge,jdbcType=DECIMAL}, + + + #{cashstatus,jdbcType=VARCHAR}, + + + #{cashstatusnow,jdbcType=VARCHAR}, + + + + + update tb_pluss_cash + + + userId = #{userid,jdbcType=INTEGER}, + + + userName = #{username,jdbcType=VARCHAR}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + accountNo = #{accountno,jdbcType=VARCHAR}, + + + accountName = #{accountname,jdbcType=VARCHAR}, + + + cashAmt = #{cashamt,jdbcType=DECIMAL}, + + + status = #{status,jdbcType=INTEGER}, + + + reason = #{reason,jdbcType=VARCHAR}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + updateDt = #{updatedt,jdbcType=TIMESTAMP}, + + + logo = #{logo,jdbcType=VARCHAR}, + + + cashNumber = #{cashnumber,jdbcType=VARCHAR}, + + + backNo = #{backno,jdbcType=VARCHAR}, + + + backDt = #{backdt,jdbcType=TIMESTAMP}, + + + updator = #{updator,jdbcType=VARCHAR}, + + + type = #{type,jdbcType=INTEGER}, + + + baseServiceCharge = #{baseservicecharge,jdbcType=DECIMAL}, + + + ratioCharge = #{ratiocharge,jdbcType=DECIMAL}, + + + virRealCashAmt = #{virrealcashamt,jdbcType=DECIMAL}, + + + virTotalCharge = #{virtotalcharge,jdbcType=DECIMAL}, + + + cashStatus = #{cashstatus,jdbcType=VARCHAR}, + + + cashStatusNow = #{cashstatusnow,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_cash + set userId = #{userid,jdbcType=INTEGER}, + userName = #{username,jdbcType=VARCHAR}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + accountNo = #{accountno,jdbcType=VARCHAR}, + accountName = #{accountname,jdbcType=VARCHAR}, + cashAmt = #{cashamt,jdbcType=DECIMAL}, + status = #{status,jdbcType=INTEGER}, + reason = #{reason,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + updateDt = #{updatedt,jdbcType=TIMESTAMP}, + logo = #{logo,jdbcType=VARCHAR}, + cashNumber = #{cashnumber,jdbcType=VARCHAR}, + backNo = #{backno,jdbcType=VARCHAR}, + backDt = #{backdt,jdbcType=TIMESTAMP}, + updator = #{updator,jdbcType=VARCHAR}, + type = #{type,jdbcType=INTEGER}, + baseServiceCharge = #{baseservicecharge,jdbcType=DECIMAL}, + ratioCharge = #{ratiocharge,jdbcType=DECIMAL}, + cashStatus = #{cashstatus,jdbcType=VARCHAR}, + cashStatusNow = #{cashstatusnow,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + + + + + + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussCityMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussCityMapper.xml new file mode 100644 index 0000000..c42ad94 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussCityMapper.xml @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + F_city_no, F_city_name, F_aliasc, F_city_cups_no, F_province_no, F_x, F_y + + + + delete from tb_pluss_city + where F_city_no = #{fCityNo,jdbcType=INTEGER} + + + insert into tb_pluss_city (F_city_no, F_city_name, F_aliasc, + F_city_cups_no, F_province_no, F_x, + F_y) + values (#{fCityNo,jdbcType=INTEGER}, #{fCityName,jdbcType=VARCHAR}, #{fAliasc,jdbcType=VARCHAR}, + #{fCityCupsNo,jdbcType=INTEGER}, #{fProvinceNo,jdbcType=INTEGER}, #{fX,jdbcType=VARCHAR}, + #{fY,jdbcType=VARCHAR}) + + + insert into tb_pluss_city + + + F_city_no, + + + F_city_name, + + + F_aliasc, + + + F_city_cups_no, + + + F_province_no, + + + F_x, + + + F_y, + + + + + #{fCityNo,jdbcType=INTEGER}, + + + #{fCityName,jdbcType=VARCHAR}, + + + #{fAliasc,jdbcType=VARCHAR}, + + + #{fCityCupsNo,jdbcType=INTEGER}, + + + #{fProvinceNo,jdbcType=INTEGER}, + + + #{fX,jdbcType=VARCHAR}, + + + #{fY,jdbcType=VARCHAR}, + + + + + update tb_pluss_city + + + F_city_name = #{fCityName,jdbcType=VARCHAR}, + + + F_aliasc = #{fAliasc,jdbcType=VARCHAR}, + + + F_city_cups_no = #{fCityCupsNo,jdbcType=INTEGER}, + + + F_province_no = #{fProvinceNo,jdbcType=INTEGER}, + + + F_x = #{fX,jdbcType=VARCHAR}, + + + F_y = #{fY,jdbcType=VARCHAR}, + + + where F_city_no = #{fCityNo,jdbcType=INTEGER} + + + update tb_pluss_city + set F_city_name = #{fCityName,jdbcType=VARCHAR}, + F_aliasc = #{fAliasc,jdbcType=VARCHAR}, + F_city_cups_no = #{fCityCupsNo,jdbcType=INTEGER}, + F_province_no = #{fProvinceNo,jdbcType=INTEGER}, + F_x = #{fX,jdbcType=VARCHAR}, + F_y = #{fY,jdbcType=VARCHAR} + where F_city_no = #{fCityNo,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussCommonRemarkMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussCommonRemarkMapper.xml new file mode 100644 index 0000000..d228453 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussCommonRemarkMapper.xml @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + id, userId, remark, dataId, code, createTime, updateTime + + + + delete from tb_pluss_common_remark + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_common_remark (id, userId, remark, + dataId, code, createTime, + updateTime) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{remark,jdbcType=VARCHAR}, + #{dataid,jdbcType=INTEGER}, #{code,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, + #{updatetime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_common_remark + + + id, + + + userId, + + + remark, + + + dataId, + + + code, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{remark,jdbcType=VARCHAR}, + + + #{dataid,jdbcType=INTEGER}, + + + #{code,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_common_remark + + + userId = #{userid,jdbcType=INTEGER}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + dataId = #{dataid,jdbcType=INTEGER}, + + + code = #{code,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_common_remark + set userId = #{userid,jdbcType=INTEGER}, + remark = #{remark,jdbcType=VARCHAR}, + dataId = #{dataid,jdbcType=INTEGER}, + code = #{code,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussCommonSwitchMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussCommonSwitchMapper.xml new file mode 100644 index 0000000..299bcad --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussCommonSwitchMapper.xml @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + id, code, name, value, sort, createTime, updateTime + + + + delete from tb_pluss_common_switch + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_common_switch (id, code, name, + value, sort, createTime, + updateTime) + values (#{id,jdbcType=INTEGER}, #{code,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, + #{value,jdbcType=VARCHAR}, #{sort,jdbcType=INTEGER}, #{createtime,jdbcType=TIMESTAMP}, + #{updatetime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_common_switch + + + id, + + + code, + + + name, + + + value, + + + sort, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{code,jdbcType=VARCHAR}, + + + #{name,jdbcType=VARCHAR}, + + + #{value,jdbcType=VARCHAR}, + + + #{sort,jdbcType=INTEGER}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_common_switch + + + code = #{code,jdbcType=VARCHAR}, + + + name = #{name,jdbcType=VARCHAR}, + + + value = #{value,jdbcType=VARCHAR}, + + + sort = #{sort,jdbcType=INTEGER}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_common_switch + set code = #{code,jdbcType=VARCHAR}, + name = #{name,jdbcType=VARCHAR}, + value = #{value,jdbcType=VARCHAR}, + sort = #{sort,jdbcType=INTEGER}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussDayStatisticsMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussDayStatisticsMapper.xml new file mode 100644 index 0000000..b354b39 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussDayStatisticsMapper.xml @@ -0,0 +1,319 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, consumeFee, consumeFeeZFB, consumeFeeWX, consumeFeeYL, count, countZFB, countWX, + countYL, refundFee, refundFeeZFB, refundFeeWX, refundFeeYL, newCount, newCountStore, + newCountMember, newCountReg, profitSum, profitSpread, profitFans, profitCompany, + date, createTime, updateTime + + + + delete from tb_pluss_day_statistics + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_day_statistics (id, consumeFee, consumeFeeZFB, + consumeFeeWX, consumeFeeYL, count, + countZFB, countWX, countYL, + refundFee, refundFeeZFB, refundFeeWX, + refundFeeYL, newCount, newCountStore, + newCountMember, newCountReg, profitSum, + profitSpread, profitFans, profitCompany, + date, createTime, updateTime + ) + values (#{id,jdbcType=INTEGER}, #{consumefee,jdbcType=DECIMAL}, #{consumefeezfb,jdbcType=DECIMAL}, + #{consumefeewx,jdbcType=DECIMAL}, #{consumefeeyl,jdbcType=DECIMAL}, #{count,jdbcType=INTEGER}, + #{countzfb,jdbcType=INTEGER}, #{countwx,jdbcType=INTEGER}, #{countyl,jdbcType=INTEGER}, + #{refundfee,jdbcType=DECIMAL}, #{refundfeezfb,jdbcType=DECIMAL}, #{refundfeewx,jdbcType=DECIMAL}, + #{refundfeeyl,jdbcType=DECIMAL}, #{newcount,jdbcType=INTEGER}, #{newcountstore,jdbcType=INTEGER}, + #{newcountmember,jdbcType=INTEGER}, #{newcountreg,jdbcType=INTEGER}, #{profitsum,jdbcType=DECIMAL}, + #{profitspread,jdbcType=DECIMAL}, #{profitfans,jdbcType=DECIMAL}, #{profitcompany,jdbcType=DECIMAL}, + #{date,jdbcType=DATE}, #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP} + ) + + + insert into tb_pluss_day_statistics + + + id, + + + consumeFee, + + + consumeFeeZFB, + + + consumeFeeWX, + + + consumeFeeYL, + + + count, + + + countZFB, + + + countWX, + + + countYL, + + + refundFee, + + + refundFeeZFB, + + + refundFeeWX, + + + refundFeeYL, + + + newCount, + + + newCountStore, + + + newCountMember, + + + newCountReg, + + + profitSum, + + + profitSpread, + + + profitFans, + + + profitCompany, + + + date, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{consumefee,jdbcType=DECIMAL}, + + + #{consumefeezfb,jdbcType=DECIMAL}, + + + #{consumefeewx,jdbcType=DECIMAL}, + + + #{consumefeeyl,jdbcType=DECIMAL}, + + + #{count,jdbcType=INTEGER}, + + + #{countzfb,jdbcType=INTEGER}, + + + #{countwx,jdbcType=INTEGER}, + + + #{countyl,jdbcType=INTEGER}, + + + #{refundfee,jdbcType=DECIMAL}, + + + #{refundfeezfb,jdbcType=DECIMAL}, + + + #{refundfeewx,jdbcType=DECIMAL}, + + + #{refundfeeyl,jdbcType=DECIMAL}, + + + #{newcount,jdbcType=INTEGER}, + + + #{newcountstore,jdbcType=INTEGER}, + + + #{newcountmember,jdbcType=INTEGER}, + + + #{newcountreg,jdbcType=INTEGER}, + + + #{profitsum,jdbcType=DECIMAL}, + + + #{profitspread,jdbcType=DECIMAL}, + + + #{profitfans,jdbcType=DECIMAL}, + + + #{profitcompany,jdbcType=DECIMAL}, + + + #{date,jdbcType=DATE}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_day_statistics + + + consumeFee = #{consumefee,jdbcType=DECIMAL}, + + + consumeFeeZFB = #{consumefeezfb,jdbcType=DECIMAL}, + + + consumeFeeWX = #{consumefeewx,jdbcType=DECIMAL}, + + + consumeFeeYL = #{consumefeeyl,jdbcType=DECIMAL}, + + + count = #{count,jdbcType=INTEGER}, + + + countZFB = #{countzfb,jdbcType=INTEGER}, + + + countWX = #{countwx,jdbcType=INTEGER}, + + + countYL = #{countyl,jdbcType=INTEGER}, + + + refundFee = #{refundfee,jdbcType=DECIMAL}, + + + refundFeeZFB = #{refundfeezfb,jdbcType=DECIMAL}, + + + refundFeeWX = #{refundfeewx,jdbcType=DECIMAL}, + + + refundFeeYL = #{refundfeeyl,jdbcType=DECIMAL}, + + + newCount = #{newcount,jdbcType=INTEGER}, + + + newCountStore = #{newcountstore,jdbcType=INTEGER}, + + + newCountMember = #{newcountmember,jdbcType=INTEGER}, + + + newCountReg = #{newcountreg,jdbcType=INTEGER}, + + + profitSum = #{profitsum,jdbcType=DECIMAL}, + + + profitSpread = #{profitspread,jdbcType=DECIMAL}, + + + profitFans = #{profitfans,jdbcType=DECIMAL}, + + + profitCompany = #{profitcompany,jdbcType=DECIMAL}, + + + date = #{date,jdbcType=DATE}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_day_statistics + set consumeFee = #{consumefee,jdbcType=DECIMAL}, + consumeFeeZFB = #{consumefeezfb,jdbcType=DECIMAL}, + consumeFeeWX = #{consumefeewx,jdbcType=DECIMAL}, + consumeFeeYL = #{consumefeeyl,jdbcType=DECIMAL}, + count = #{count,jdbcType=INTEGER}, + countZFB = #{countzfb,jdbcType=INTEGER}, + countWX = #{countwx,jdbcType=INTEGER}, + countYL = #{countyl,jdbcType=INTEGER}, + refundFee = #{refundfee,jdbcType=DECIMAL}, + refundFeeZFB = #{refundfeezfb,jdbcType=DECIMAL}, + refundFeeWX = #{refundfeewx,jdbcType=DECIMAL}, + refundFeeYL = #{refundfeeyl,jdbcType=DECIMAL}, + newCount = #{newcount,jdbcType=INTEGER}, + newCountStore = #{newcountstore,jdbcType=INTEGER}, + newCountMember = #{newcountmember,jdbcType=INTEGER}, + newCountReg = #{newcountreg,jdbcType=INTEGER}, + profitSum = #{profitsum,jdbcType=DECIMAL}, + profitSpread = #{profitspread,jdbcType=DECIMAL}, + profitFans = #{profitfans,jdbcType=DECIMAL}, + profitCompany = #{profitcompany,jdbcType=DECIMAL}, + date = #{date,jdbcType=DATE}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceBsjMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceBsjMapper.xml new file mode 100644 index 0000000..c029ac0 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceBsjMapper.xml @@ -0,0 +1,106 @@ + + + + + + + + + + + + + snNo, deviceNo, imei, iccid, sim, simExpireTime + + + + delete from tb_pluss_device_bsj + where snNo = #{snno,jdbcType=VARCHAR} + + + insert into tb_pluss_device_bsj (snNo, deviceNo, imei, + iccid, sim, simExpireTime + ) + values (#{snno,jdbcType=VARCHAR}, #{deviceno,jdbcType=VARCHAR}, #{imei,jdbcType=VARCHAR}, + #{iccid,jdbcType=VARCHAR}, #{sim,jdbcType=VARCHAR}, #{simexpiretime,jdbcType=TIMESTAMP} + ) + + + insert into tb_pluss_device_bsj + + + snNo, + + + deviceNo, + + + imei, + + + iccid, + + + sim, + + + simExpireTime, + + + + + #{snno,jdbcType=VARCHAR}, + + + #{deviceno,jdbcType=VARCHAR}, + + + #{imei,jdbcType=VARCHAR}, + + + #{iccid,jdbcType=VARCHAR}, + + + #{sim,jdbcType=VARCHAR}, + + + #{simexpiretime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_device_bsj + + + deviceNo = #{deviceno,jdbcType=VARCHAR}, + + + imei = #{imei,jdbcType=VARCHAR}, + + + iccid = #{iccid,jdbcType=VARCHAR}, + + + sim = #{sim,jdbcType=VARCHAR}, + + + simExpireTime = #{simexpiretime,jdbcType=TIMESTAMP}, + + + where snNo = #{snno,jdbcType=VARCHAR} + + + update tb_pluss_device_bsj + set deviceNo = #{deviceno,jdbcType=VARCHAR}, + imei = #{imei,jdbcType=VARCHAR}, + iccid = #{iccid,jdbcType=VARCHAR}, + sim = #{sim,jdbcType=VARCHAR}, + simExpireTime = #{simexpiretime,jdbcType=TIMESTAMP} + where snNo = #{snno,jdbcType=VARCHAR} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceDetailMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceDetailMapper.xml new file mode 100644 index 0000000..88a2d94 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceDetailMapper.xml @@ -0,0 +1,259 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + id, code, venderCode, deviceLogo, venderName, venderModel, aisleModel, type, groupNo, + introDesc, seq, status, createDt, unitPrice, maxOrderCount, detail, size, wholesalePrice, + wholesaleMinNum + + + + delete from tb_pluss_device_detail + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_device_detail (id, code, venderCode, + deviceLogo, venderName, venderModel, + aisleModel, type, groupNo, + introDesc, seq, status, + createDt, unitPrice, maxOrderCount, + detail, size, wholesalePrice, + wholesaleMinNum) + values (#{id,jdbcType=INTEGER}, #{code,jdbcType=VARCHAR}, #{vendercode,jdbcType=VARCHAR}, + #{devicelogo,jdbcType=VARCHAR}, #{vendername,jdbcType=VARCHAR}, #{vendermodel,jdbcType=VARCHAR}, + #{aislemodel,jdbcType=VARCHAR}, #{type,jdbcType=VARCHAR}, #{groupno,jdbcType=VARCHAR}, + #{introdesc,jdbcType=VARCHAR}, #{seq,jdbcType=INTEGER}, #{status,jdbcType=INTEGER}, + #{createdt,jdbcType=TIMESTAMP}, #{unitprice,jdbcType=DECIMAL}, #{maxordercount,jdbcType=VARCHAR}, + #{detail,jdbcType=VARCHAR}, #{size,jdbcType=INTEGER}, #{wholesaleprice,jdbcType=DECIMAL}, + #{wholesaleminnum,jdbcType=INTEGER}) + + + insert into tb_pluss_device_detail + + + id, + + + code, + + + venderCode, + + + deviceLogo, + + + venderName, + + + venderModel, + + + aisleModel, + + + type, + + + groupNo, + + + introDesc, + + + seq, + + + status, + + + createDt, + + + unitPrice, + + + maxOrderCount, + + + detail, + + + size, + + + wholesalePrice, + + + wholesaleMinNum, + + + + + #{id,jdbcType=INTEGER}, + + + #{code,jdbcType=VARCHAR}, + + + #{vendercode,jdbcType=VARCHAR}, + + + #{devicelogo,jdbcType=VARCHAR}, + + + #{vendername,jdbcType=VARCHAR}, + + + #{vendermodel,jdbcType=VARCHAR}, + + + #{aislemodel,jdbcType=VARCHAR}, + + + #{type,jdbcType=VARCHAR}, + + + #{groupno,jdbcType=VARCHAR}, + + + #{introdesc,jdbcType=VARCHAR}, + + + #{seq,jdbcType=INTEGER}, + + + #{status,jdbcType=INTEGER}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{unitprice,jdbcType=DECIMAL}, + + + #{maxordercount,jdbcType=VARCHAR}, + + + #{detail,jdbcType=VARCHAR}, + + + #{size,jdbcType=INTEGER}, + + + #{wholesaleprice,jdbcType=DECIMAL}, + + + #{wholesaleminnum,jdbcType=INTEGER}, + + + + + update tb_pluss_device_detail + + + code = #{code,jdbcType=VARCHAR}, + + + venderCode = #{vendercode,jdbcType=VARCHAR}, + + + deviceLogo = #{devicelogo,jdbcType=VARCHAR}, + + + venderName = #{vendername,jdbcType=VARCHAR}, + + + venderModel = #{vendermodel,jdbcType=VARCHAR}, + + + aisleModel = #{aislemodel,jdbcType=VARCHAR}, + + + type = #{type,jdbcType=VARCHAR}, + + + groupNo = #{groupno,jdbcType=VARCHAR}, + + + introDesc = #{introdesc,jdbcType=VARCHAR}, + + + seq = #{seq,jdbcType=INTEGER}, + + + status = #{status,jdbcType=INTEGER}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + unitPrice = #{unitprice,jdbcType=DECIMAL}, + + + maxOrderCount = #{maxordercount,jdbcType=VARCHAR}, + + + detail = #{detail,jdbcType=VARCHAR}, + + + size = #{size,jdbcType=INTEGER}, + + + wholesalePrice = #{wholesaleprice,jdbcType=DECIMAL}, + + + wholesaleMinNum = #{wholesaleminnum,jdbcType=INTEGER}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_device_detail + set code = #{code,jdbcType=VARCHAR}, + venderCode = #{vendercode,jdbcType=VARCHAR}, + deviceLogo = #{devicelogo,jdbcType=VARCHAR}, + venderName = #{vendername,jdbcType=VARCHAR}, + venderModel = #{vendermodel,jdbcType=VARCHAR}, + aisleModel = #{aislemodel,jdbcType=VARCHAR}, + type = #{type,jdbcType=VARCHAR}, + groupNo = #{groupno,jdbcType=VARCHAR}, + introDesc = #{introdesc,jdbcType=VARCHAR}, + seq = #{seq,jdbcType=INTEGER}, + status = #{status,jdbcType=INTEGER}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + unitPrice = #{unitprice,jdbcType=DECIMAL}, + maxOrderCount = #{maxordercount,jdbcType=VARCHAR}, + detail = #{detail,jdbcType=VARCHAR}, + size = #{size,jdbcType=INTEGER}, + wholesalePrice = #{wholesaleprice,jdbcType=DECIMAL}, + wholesaleMinNum = #{wholesaleminnum,jdbcType=INTEGER} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceGoodTagMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceGoodTagMapper.xml new file mode 100644 index 0000000..478c06c --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceGoodTagMapper.xml @@ -0,0 +1,93 @@ + + + + + + + + + + + + id, tag, sort, createTime, updateTime + + + + delete from tb_pluss_device_good_tag + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_device_good_tag (id, tag, sort, + createTime, updateTime) + values (#{id,jdbcType=INTEGER}, #{tag,jdbcType=VARCHAR}, #{sort,jdbcType=INTEGER}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_device_good_tag + + + id, + + + tag, + + + sort, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{tag,jdbcType=VARCHAR}, + + + #{sort,jdbcType=INTEGER}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_device_good_tag + + + tag = #{tag,jdbcType=VARCHAR}, + + + sort = #{sort,jdbcType=INTEGER}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_device_good_tag + set tag = #{tag,jdbcType=VARCHAR}, + sort = #{sort,jdbcType=INTEGER}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceGoodsMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceGoodsMapper.xml new file mode 100644 index 0000000..89728e2 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceGoodsMapper.xml @@ -0,0 +1,198 @@ + + + + + + + + + + + + + + + + + + + + + id, code, name, deviceLogo, introDesc, sort, status, tagId, depositFlag, createTime, + updateTime + + + detail + + + + delete from tb_pluss_device_goods + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_device_goods (id, code, name, + deviceLogo, introDesc, sort, + status, tagId, depositFlag, + createTime, updateTime, detail + ) + values (#{id,jdbcType=INTEGER}, #{code,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, + #{devicelogo,jdbcType=VARCHAR}, #{introdesc,jdbcType=VARCHAR}, #{sort,jdbcType=INTEGER}, + #{status,jdbcType=INTEGER}, #{tagid,jdbcType=INTEGER}, #{depositflag,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}, #{detail,jdbcType=LONGVARCHAR} + ) + + + insert into tb_pluss_device_goods + + + id, + + + code, + + + name, + + + deviceLogo, + + + introDesc, + + + sort, + + + status, + + + tagId, + + + depositFlag, + + + createTime, + + + updateTime, + + + detail, + + + + + #{id,jdbcType=INTEGER}, + + + #{code,jdbcType=VARCHAR}, + + + #{name,jdbcType=VARCHAR}, + + + #{devicelogo,jdbcType=VARCHAR}, + + + #{introdesc,jdbcType=VARCHAR}, + + + #{sort,jdbcType=INTEGER}, + + + #{status,jdbcType=INTEGER}, + + + #{tagid,jdbcType=INTEGER}, + + + #{depositflag,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{detail,jdbcType=LONGVARCHAR}, + + + + + update tb_pluss_device_goods + + + code = #{code,jdbcType=VARCHAR}, + + + name = #{name,jdbcType=VARCHAR}, + + + deviceLogo = #{devicelogo,jdbcType=VARCHAR}, + + + introDesc = #{introdesc,jdbcType=VARCHAR}, + + + sort = #{sort,jdbcType=INTEGER}, + + + status = #{status,jdbcType=INTEGER}, + + + tagId = #{tagid,jdbcType=INTEGER}, + + + depositFlag = #{depositflag,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + detail = #{detail,jdbcType=LONGVARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_device_goods + set code = #{code,jdbcType=VARCHAR}, + name = #{name,jdbcType=VARCHAR}, + deviceLogo = #{devicelogo,jdbcType=VARCHAR}, + introDesc = #{introdesc,jdbcType=VARCHAR}, + sort = #{sort,jdbcType=INTEGER}, + status = #{status,jdbcType=INTEGER}, + tagId = #{tagid,jdbcType=INTEGER}, + depositFlag = #{depositflag,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + detail = #{detail,jdbcType=LONGVARCHAR} + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_device_goods + set code = #{code,jdbcType=VARCHAR}, + name = #{name,jdbcType=VARCHAR}, + deviceLogo = #{devicelogo,jdbcType=VARCHAR}, + introDesc = #{introdesc,jdbcType=VARCHAR}, + sort = #{sort,jdbcType=INTEGER}, + status = #{status,jdbcType=INTEGER}, + tagId = #{tagid,jdbcType=INTEGER}, + depositFlag = #{depositflag,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceMapper.xml new file mode 100644 index 0000000..b7b9c35 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceMapper.xml @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + id, name, venderCode, matNo, deviceLogo, venderName, venderModel, aisleModel, type, + introDesc, seq, status, createDt, inventory, unitPrice, detail + + + + delete from tb_pluss_device + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_device (id, name, venderCode, + matNo, deviceLogo, venderName, + venderModel, aisleModel, type, + introDesc, seq, status, + createDt, inventory, unitPrice, + detail) + values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{vendercode,jdbcType=VARCHAR}, + #{matno,jdbcType=VARCHAR}, #{devicelogo,jdbcType=VARCHAR}, #{vendername,jdbcType=VARCHAR}, + #{vendermodel,jdbcType=VARCHAR}, #{aislemodel,jdbcType=VARCHAR}, #{type,jdbcType=VARCHAR}, + #{introdesc,jdbcType=VARCHAR}, #{seq,jdbcType=INTEGER}, #{status,jdbcType=INTEGER}, + #{createdt,jdbcType=TIMESTAMP}, #{inventory,jdbcType=INTEGER}, #{unitprice,jdbcType=DOUBLE}, + #{detail,jdbcType=VARCHAR}) + + + insert into tb_pluss_device + + + id, + + + name, + + + venderCode, + + + matNo, + + + deviceLogo, + + + venderName, + + + venderModel, + + + aisleModel, + + + type, + + + introDesc, + + + seq, + + + status, + + + createDt, + + + inventory, + + + unitPrice, + + + detail, + + + + + #{id,jdbcType=INTEGER}, + + + #{name,jdbcType=VARCHAR}, + + + #{vendercode,jdbcType=VARCHAR}, + + + #{matno,jdbcType=VARCHAR}, + + + #{devicelogo,jdbcType=VARCHAR}, + + + #{vendername,jdbcType=VARCHAR}, + + + #{vendermodel,jdbcType=VARCHAR}, + + + #{aislemodel,jdbcType=VARCHAR}, + + + #{type,jdbcType=VARCHAR}, + + + #{introdesc,jdbcType=VARCHAR}, + + + #{seq,jdbcType=INTEGER}, + + + #{status,jdbcType=INTEGER}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{inventory,jdbcType=INTEGER}, + + + #{unitprice,jdbcType=DOUBLE}, + + + #{detail,jdbcType=VARCHAR}, + + + + + update tb_pluss_device + + + name = #{name,jdbcType=VARCHAR}, + + + venderCode = #{vendercode,jdbcType=VARCHAR}, + + + matNo = #{matno,jdbcType=VARCHAR}, + + + deviceLogo = #{devicelogo,jdbcType=VARCHAR}, + + + venderName = #{vendername,jdbcType=VARCHAR}, + + + venderModel = #{vendermodel,jdbcType=VARCHAR}, + + + aisleModel = #{aislemodel,jdbcType=VARCHAR}, + + + type = #{type,jdbcType=VARCHAR}, + + + introDesc = #{introdesc,jdbcType=VARCHAR}, + + + seq = #{seq,jdbcType=INTEGER}, + + + status = #{status,jdbcType=INTEGER}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + inventory = #{inventory,jdbcType=INTEGER}, + + + unitPrice = #{unitprice,jdbcType=DOUBLE}, + + + detail = #{detail,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_device + set name = #{name,jdbcType=VARCHAR}, + venderCode = #{vendercode,jdbcType=VARCHAR}, + matNo = #{matno,jdbcType=VARCHAR}, + deviceLogo = #{devicelogo,jdbcType=VARCHAR}, + venderName = #{vendername,jdbcType=VARCHAR}, + venderModel = #{vendermodel,jdbcType=VARCHAR}, + aisleModel = #{aislemodel,jdbcType=VARCHAR}, + type = #{type,jdbcType=VARCHAR}, + introDesc = #{introdesc,jdbcType=VARCHAR}, + seq = #{seq,jdbcType=INTEGER}, + status = #{status,jdbcType=INTEGER}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + inventory = #{inventory,jdbcType=INTEGER}, + unitPrice = #{unitprice,jdbcType=DOUBLE}, + detail = #{detail,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceMerchantBuyDetailMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceMerchantBuyDetailMapper.xml new file mode 100644 index 0000000..564ddc9 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceMerchantBuyDetailMapper.xml @@ -0,0 +1,71 @@ + + + + + + + + + + id, orderNo, soleCode + + + + delete from tb_pluss_device_merchant_buy_detail + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_device_merchant_buy_detail (id, orderNo, soleCode + ) + values (#{id,jdbcType=INTEGER}, #{orderno,jdbcType=VARCHAR}, #{solecode,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_device_merchant_buy_detail + + + id, + + + orderNo, + + + soleCode, + + + + + #{id,jdbcType=INTEGER}, + + + #{orderno,jdbcType=VARCHAR}, + + + #{solecode,jdbcType=VARCHAR}, + + + + + update tb_pluss_device_merchant_buy_detail + + + orderNo = #{orderno,jdbcType=VARCHAR}, + + + soleCode = #{solecode,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_device_merchant_buy_detail + set orderNo = #{orderno,jdbcType=VARCHAR}, + soleCode = #{solecode,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceMerchantBuyMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceMerchantBuyMapper.xml new file mode 100644 index 0000000..f3e35bd --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceMerchantBuyMapper.xml @@ -0,0 +1,329 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, orderNo, transNo, orderAmount, quantity, merchantCode, merchantName, venderCode, + venderModel, status, payCode, payName, createDt, transDt, refundNo, refundDt, expressNo, + provinces, address, linkName, linkPhone, email, actStatus, snNo, logistNo + + + + delete from tb_pluss_device_merchant_buy + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_device_merchant_buy (id, orderNo, transNo, + orderAmount, quantity, merchantCode, + merchantName, venderCode, venderModel, + status, payCode, payName, + createDt, transDt, refundNo, + refundDt, expressNo, provinces, + address, linkName, linkPhone, + email, actStatus, snNo, + logistNo) + values (#{id,jdbcType=INTEGER}, #{orderno,jdbcType=VARCHAR}, #{transno,jdbcType=VARCHAR}, + #{orderamount,jdbcType=DOUBLE}, #{quantity,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, + #{merchantname,jdbcType=VARCHAR}, #{vendercode,jdbcType=VARCHAR}, #{vendermodel,jdbcType=VARCHAR}, + #{status,jdbcType=VARCHAR}, #{paycode,jdbcType=VARCHAR}, #{payname,jdbcType=VARCHAR}, + #{createdt,jdbcType=TIMESTAMP}, #{transdt,jdbcType=TIMESTAMP}, #{refundno,jdbcType=VARCHAR}, + #{refunddt,jdbcType=TIMESTAMP}, #{expressno,jdbcType=VARCHAR}, #{provinces,jdbcType=VARCHAR}, + #{address,jdbcType=VARCHAR}, #{linkname,jdbcType=VARCHAR}, #{linkphone,jdbcType=VARCHAR}, + #{email,jdbcType=VARCHAR}, #{actstatus,jdbcType=VARCHAR}, #{snno,jdbcType=VARCHAR}, + #{logistno,jdbcType=VARCHAR}) + + + insert into tb_pluss_device_merchant_buy + + + id, + + + orderNo, + + + transNo, + + + orderAmount, + + + quantity, + + + merchantCode, + + + merchantName, + + + venderCode, + + + venderModel, + + + status, + + + payCode, + + + payName, + + + createDt, + + + transDt, + + + refundNo, + + + refundDt, + + + expressNo, + + + provinces, + + + address, + + + linkName, + + + linkPhone, + + + email, + + + actStatus, + + + snNo, + + + logistNo, + + + + + #{id,jdbcType=INTEGER}, + + + #{orderno,jdbcType=VARCHAR}, + + + #{transno,jdbcType=VARCHAR}, + + + #{orderamount,jdbcType=DOUBLE}, + + + #{quantity,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{vendercode,jdbcType=VARCHAR}, + + + #{vendermodel,jdbcType=VARCHAR}, + + + #{status,jdbcType=VARCHAR}, + + + #{paycode,jdbcType=VARCHAR}, + + + #{payname,jdbcType=VARCHAR}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{transdt,jdbcType=TIMESTAMP}, + + + #{refundno,jdbcType=VARCHAR}, + + + #{refunddt,jdbcType=TIMESTAMP}, + + + #{expressno,jdbcType=VARCHAR}, + + + #{provinces,jdbcType=VARCHAR}, + + + #{address,jdbcType=VARCHAR}, + + + #{linkname,jdbcType=VARCHAR}, + + + #{linkphone,jdbcType=VARCHAR}, + + + #{email,jdbcType=VARCHAR}, + + + #{actstatus,jdbcType=VARCHAR}, + + + #{snno,jdbcType=VARCHAR}, + + + #{logistno,jdbcType=VARCHAR}, + + + + + update tb_pluss_device_merchant_buy + + + orderNo = #{orderno,jdbcType=VARCHAR}, + + + transNo = #{transno,jdbcType=VARCHAR}, + + + orderAmount = #{orderamount,jdbcType=DOUBLE}, + + + quantity = #{quantity,jdbcType=INTEGER}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + venderCode = #{vendercode,jdbcType=VARCHAR}, + + + venderModel = #{vendermodel,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=VARCHAR}, + + + payCode = #{paycode,jdbcType=VARCHAR}, + + + payName = #{payname,jdbcType=VARCHAR}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + transDt = #{transdt,jdbcType=TIMESTAMP}, + + + refundNo = #{refundno,jdbcType=VARCHAR}, + + + refundDt = #{refunddt,jdbcType=TIMESTAMP}, + + + expressNo = #{expressno,jdbcType=VARCHAR}, + + + provinces = #{provinces,jdbcType=VARCHAR}, + + + address = #{address,jdbcType=VARCHAR}, + + + linkName = #{linkname,jdbcType=VARCHAR}, + + + linkPhone = #{linkphone,jdbcType=VARCHAR}, + + + email = #{email,jdbcType=VARCHAR}, + + + actStatus = #{actstatus,jdbcType=VARCHAR}, + + + snNo = #{snno,jdbcType=VARCHAR}, + + + logistNo = #{logistno,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_device_merchant_buy + set orderNo = #{orderno,jdbcType=VARCHAR}, + transNo = #{transno,jdbcType=VARCHAR}, + orderAmount = #{orderamount,jdbcType=DOUBLE}, + quantity = #{quantity,jdbcType=INTEGER}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + venderCode = #{vendercode,jdbcType=VARCHAR}, + venderModel = #{vendermodel,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + payCode = #{paycode,jdbcType=VARCHAR}, + payName = #{payname,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + transDt = #{transdt,jdbcType=TIMESTAMP}, + refundNo = #{refundno,jdbcType=VARCHAR}, + refundDt = #{refunddt,jdbcType=TIMESTAMP}, + expressNo = #{expressno,jdbcType=VARCHAR}, + provinces = #{provinces,jdbcType=VARCHAR}, + address = #{address,jdbcType=VARCHAR}, + linkName = #{linkname,jdbcType=VARCHAR}, + linkPhone = #{linkphone,jdbcType=VARCHAR}, + email = #{email,jdbcType=VARCHAR}, + actStatus = #{actstatus,jdbcType=VARCHAR}, + snNo = #{snno,jdbcType=VARCHAR}, + logistNo = #{logistno,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceOperateInfoMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceOperateInfoMapper.xml new file mode 100644 index 0000000..3e4078e --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceOperateInfoMapper.xml @@ -0,0 +1,106 @@ + + + + + + + + + + + + + id, deviceNo, type, userId, createTime, remark + + + + delete from tb_pluss_device_operate_info + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_device_operate_info (id, deviceNo, type, + userId, createTime, remark + ) + values (#{id,jdbcType=INTEGER}, #{deviceno,jdbcType=VARCHAR}, #{type,jdbcType=VARCHAR}, + #{userid,jdbcType=INTEGER}, #{createtime,jdbcType=TIMESTAMP}, #{remark,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_device_operate_info + + + id, + + + deviceNo, + + + type, + + + userId, + + + createTime, + + + remark, + + + + + #{id,jdbcType=INTEGER}, + + + #{deviceno,jdbcType=VARCHAR}, + + + #{type,jdbcType=VARCHAR}, + + + #{userid,jdbcType=INTEGER}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{remark,jdbcType=VARCHAR}, + + + + + update tb_pluss_device_operate_info + + + deviceNo = #{deviceno,jdbcType=VARCHAR}, + + + type = #{type,jdbcType=VARCHAR}, + + + userId = #{userid,jdbcType=INTEGER}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_device_operate_info + set deviceNo = #{deviceno,jdbcType=VARCHAR}, + type = #{type,jdbcType=VARCHAR}, + userId = #{userid,jdbcType=INTEGER}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + remark = #{remark,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceOrderInfoMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceOrderInfoMapper.xml new file mode 100644 index 0000000..3744af7 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceOrderInfoMapper.xml @@ -0,0 +1,188 @@ + + + + + + + + + + + + + + + + + + + + id, orderNo, transNo, userId, code, deviceType, orderType, groupNo, num, sumPrice, + createTime, updateTime, status + + + + delete from tb_pluss_device_order_info + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_device_order_info (id, orderNo, transNo, + userId, code, deviceType, + orderType, groupNo, num, + sumPrice, createTime, updateTime, + status) + values (#{id,jdbcType=INTEGER}, #{orderno,jdbcType=VARCHAR}, #{transno,jdbcType=VARCHAR}, + #{userid,jdbcType=VARCHAR}, #{code,jdbcType=VARCHAR}, #{devicetype,jdbcType=VARCHAR}, + #{ordertype,jdbcType=VARCHAR}, #{groupno,jdbcType=VARCHAR}, #{num,jdbcType=INTEGER}, + #{sumprice,jdbcType=DECIMAL}, #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}, + #{status,jdbcType=VARCHAR}) + + + insert into tb_pluss_device_order_info + + + id, + + + orderNo, + + + transNo, + + + userId, + + + code, + + + deviceType, + + + orderType, + + + groupNo, + + + num, + + + sumPrice, + + + createTime, + + + updateTime, + + + status, + + + + + #{id,jdbcType=INTEGER}, + + + #{orderno,jdbcType=VARCHAR}, + + + #{transno,jdbcType=VARCHAR}, + + + #{userid,jdbcType=VARCHAR}, + + + #{code,jdbcType=VARCHAR}, + + + #{devicetype,jdbcType=VARCHAR}, + + + #{ordertype,jdbcType=VARCHAR}, + + + #{groupno,jdbcType=VARCHAR}, + + + #{num,jdbcType=INTEGER}, + + + #{sumprice,jdbcType=DECIMAL}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{status,jdbcType=VARCHAR}, + + + + + update tb_pluss_device_order_info + + + orderNo = #{orderno,jdbcType=VARCHAR}, + + + transNo = #{transno,jdbcType=VARCHAR}, + + + userId = #{userid,jdbcType=VARCHAR}, + + + code = #{code,jdbcType=VARCHAR}, + + + deviceType = #{devicetype,jdbcType=VARCHAR}, + + + orderType = #{ordertype,jdbcType=VARCHAR}, + + + groupNo = #{groupno,jdbcType=VARCHAR}, + + + num = #{num,jdbcType=INTEGER}, + + + sumPrice = #{sumprice,jdbcType=DECIMAL}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + status = #{status,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_device_order_info + set orderNo = #{orderno,jdbcType=VARCHAR}, + transNo = #{transno,jdbcType=VARCHAR}, + userId = #{userid,jdbcType=VARCHAR}, + code = #{code,jdbcType=VARCHAR}, + deviceType = #{devicetype,jdbcType=VARCHAR}, + orderType = #{ordertype,jdbcType=VARCHAR}, + groupNo = #{groupno,jdbcType=VARCHAR}, + num = #{num,jdbcType=INTEGER}, + sumPrice = #{sumprice,jdbcType=DECIMAL}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + status = #{status,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceSignUnbindMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceSignUnbindMapper.xml new file mode 100644 index 0000000..fc4f2fd --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceSignUnbindMapper.xml @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + id, orderNo, soleCode, venderCode, venderModel, sn, merchantCode, merchantName, mchId, + status, createDt, reason + + + + delete from tb_pluss_device_sign_unbind + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_device_sign_unbind (id, orderNo, soleCode, + venderCode, venderModel, sn, + merchantCode, merchantName, mchId, + status, createDt, reason + ) + values (#{id,jdbcType=INTEGER}, #{orderno,jdbcType=VARCHAR}, #{solecode,jdbcType=VARCHAR}, + #{vendercode,jdbcType=VARCHAR}, #{vendermodel,jdbcType=VARCHAR}, #{sn,jdbcType=VARCHAR}, + #{merchantcode,jdbcType=VARCHAR}, #{merchantname,jdbcType=VARCHAR}, #{mchid,jdbcType=VARCHAR}, + #{status,jdbcType=VARCHAR}, #{createdt,jdbcType=TIMESTAMP}, #{reason,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_device_sign_unbind + + + id, + + + orderNo, + + + soleCode, + + + venderCode, + + + venderModel, + + + sn, + + + merchantCode, + + + merchantName, + + + mchId, + + + status, + + + createDt, + + + reason, + + + + + #{id,jdbcType=INTEGER}, + + + #{orderno,jdbcType=VARCHAR}, + + + #{solecode,jdbcType=VARCHAR}, + + + #{vendercode,jdbcType=VARCHAR}, + + + #{vendermodel,jdbcType=VARCHAR}, + + + #{sn,jdbcType=VARCHAR}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{mchid,jdbcType=VARCHAR}, + + + #{status,jdbcType=VARCHAR}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{reason,jdbcType=VARCHAR}, + + + + + update tb_pluss_device_sign_unbind + + + orderNo = #{orderno,jdbcType=VARCHAR}, + + + soleCode = #{solecode,jdbcType=VARCHAR}, + + + venderCode = #{vendercode,jdbcType=VARCHAR}, + + + venderModel = #{vendermodel,jdbcType=VARCHAR}, + + + sn = #{sn,jdbcType=VARCHAR}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + mchId = #{mchid,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=VARCHAR}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + reason = #{reason,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_device_sign_unbind + set orderNo = #{orderno,jdbcType=VARCHAR}, + soleCode = #{solecode,jdbcType=VARCHAR}, + venderCode = #{vendercode,jdbcType=VARCHAR}, + venderModel = #{vendermodel,jdbcType=VARCHAR}, + sn = #{sn,jdbcType=VARCHAR}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + mchId = #{mchid,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + reason = #{reason,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceSpecMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceSpecMapper.xml new file mode 100644 index 0000000..d99bae1 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceSpecMapper.xml @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + id, code, spec, specName, specDesc, type, createTime, updateTime, creator, updater, + postageFlag, weight + + + + delete from tb_pluss_device_spec + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_device_spec (id, code, spec, + specName, specDesc, type, + createTime, updateTime, creator, + updater, postageFlag, weight + ) + values (#{id,jdbcType=INTEGER}, #{code,jdbcType=VARCHAR}, #{spec,jdbcType=VARCHAR}, + #{specname,jdbcType=VARCHAR}, #{specdesc,jdbcType=VARCHAR}, #{type,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}, #{creator,jdbcType=INTEGER}, + #{updater,jdbcType=INTEGER}, #{postageflag,jdbcType=VARCHAR}, #{weight,jdbcType=DECIMAL} + ) + + + insert into tb_pluss_device_spec + + + id, + + + code, + + + spec, + + + specName, + + + specDesc, + + + type, + + + createTime, + + + updateTime, + + + creator, + + + updater, + + + postageFlag, + + + weight, + + + + + #{id,jdbcType=INTEGER}, + + + #{code,jdbcType=VARCHAR}, + + + #{spec,jdbcType=VARCHAR}, + + + #{specname,jdbcType=VARCHAR}, + + + #{specdesc,jdbcType=VARCHAR}, + + + #{type,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{creator,jdbcType=INTEGER}, + + + #{updater,jdbcType=INTEGER}, + + + #{postageflag,jdbcType=VARCHAR}, + + + #{weight,jdbcType=DECIMAL}, + + + + + update tb_pluss_device_spec + + + code = #{code,jdbcType=VARCHAR}, + + + spec = #{spec,jdbcType=VARCHAR}, + + + specName = #{specname,jdbcType=VARCHAR}, + + + specDesc = #{specdesc,jdbcType=VARCHAR}, + + + type = #{type,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + creator = #{creator,jdbcType=INTEGER}, + + + updater = #{updater,jdbcType=INTEGER}, + + + postageFlag = #{postageflag,jdbcType=VARCHAR}, + + + weight = #{weight,jdbcType=DECIMAL}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_device_spec + set code = #{code,jdbcType=VARCHAR}, + spec = #{spec,jdbcType=VARCHAR}, + specName = #{specname,jdbcType=VARCHAR}, + specDesc = #{specdesc,jdbcType=VARCHAR}, + type = #{type,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + creator = #{creator,jdbcType=INTEGER}, + updater = #{updater,jdbcType=INTEGER}, + postageFlag = #{postageflag,jdbcType=VARCHAR}, + weight = #{weight,jdbcType=DECIMAL} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceStockGroupMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceStockGroupMapper.xml new file mode 100644 index 0000000..e9f4e65 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceStockGroupMapper.xml @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + id, groupCode, groupName, desc, sort, createTime, updateTime, creator, updater + + + + delete from tb_pluss_device_stock_group + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_device_stock_group (id, groupCode, groupName, + desc, sort, createTime, + updateTime, creator, updater + ) + values (#{id,jdbcType=INTEGER}, #{groupcode,jdbcType=VARCHAR}, #{groupname,jdbcType=VARCHAR}, + #{desc,jdbcType=VARCHAR}, #{sort,jdbcType=INTEGER}, #{createtime,jdbcType=TIMESTAMP}, + #{updatetime,jdbcType=TIMESTAMP}, #{creator,jdbcType=INTEGER}, #{updater,jdbcType=INTEGER} + ) + + + insert into tb_pluss_device_stock_group + + + id, + + + groupCode, + + + groupName, + + + desc, + + + sort, + + + createTime, + + + updateTime, + + + creator, + + + updater, + + + + + #{id,jdbcType=INTEGER}, + + + #{groupcode,jdbcType=VARCHAR}, + + + #{groupname,jdbcType=VARCHAR}, + + + #{desc,jdbcType=VARCHAR}, + + + #{sort,jdbcType=INTEGER}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{creator,jdbcType=INTEGER}, + + + #{updater,jdbcType=INTEGER}, + + + + + update tb_pluss_device_stock_group + + + groupCode = #{groupcode,jdbcType=VARCHAR}, + + + groupName = #{groupname,jdbcType=VARCHAR}, + + + desc = #{desc,jdbcType=VARCHAR}, + + + sort = #{sort,jdbcType=INTEGER}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + creator = #{creator,jdbcType=INTEGER}, + + + updater = #{updater,jdbcType=INTEGER}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_device_stock_group + set groupCode = #{groupcode,jdbcType=VARCHAR}, + groupName = #{groupname,jdbcType=VARCHAR}, + desc = #{desc,jdbcType=VARCHAR}, + sort = #{sort,jdbcType=INTEGER}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + creator = #{creator,jdbcType=INTEGER}, + updater = #{updater,jdbcType=INTEGER} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceStockMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceStockMapper.xml new file mode 100644 index 0000000..794ad9b --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceStockMapper.xml @@ -0,0 +1,318 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, code, snNo, orderNo, price, type, groupNo, buyMercName, buyMercId, actMercName, + actMercId, status, createTime, createBy, delFlag, remarks, updateTime, deviceNo, + belongUserId, extractUserId, roleCode, inStockTime, transferStatus, bindTime + + + + delete from tb_pluss_device_stock + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_device_stock (id, code, snNo, + orderNo, price, type, + groupNo, buyMercName, buyMercId, + actMercName, actMercId, status, + createTime, createBy, delFlag, + remarks, updateTime, deviceNo, + belongUserId, extractUserId, roleCode, + inStockTime, transferStatus, bindTime + ) + values (#{id,jdbcType=INTEGER}, #{code,jdbcType=VARCHAR}, #{snno,jdbcType=VARCHAR}, + #{orderno,jdbcType=VARCHAR}, #{price,jdbcType=DECIMAL}, #{type,jdbcType=VARCHAR}, + #{groupno,jdbcType=VARCHAR}, #{buymercname,jdbcType=VARCHAR}, #{buymercid,jdbcType=VARCHAR}, + #{actmercname,jdbcType=VARCHAR}, #{actmercid,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{createby,jdbcType=VARCHAR}, #{delflag,jdbcType=VARCHAR}, + #{remarks,jdbcType=VARCHAR}, #{updatetime,jdbcType=TIMESTAMP}, #{deviceno,jdbcType=VARCHAR}, + #{belonguserid,jdbcType=INTEGER}, #{extractuserid,jdbcType=INTEGER}, #{rolecode,jdbcType=VARCHAR}, + #{instocktime,jdbcType=TIMESTAMP}, #{transferstatus,jdbcType=VARCHAR}, #{bindtime,jdbcType=TIMESTAMP} + ) + + + insert into tb_pluss_device_stock + + + id, + + + code, + + + snNo, + + + orderNo, + + + price, + + + type, + + + groupNo, + + + buyMercName, + + + buyMercId, + + + actMercName, + + + actMercId, + + + status, + + + createTime, + + + createBy, + + + delFlag, + + + remarks, + + + updateTime, + + + deviceNo, + + + belongUserId, + + + extractUserId, + + + roleCode, + + + inStockTime, + + + transferStatus, + + + bindTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{code,jdbcType=VARCHAR}, + + + #{snno,jdbcType=VARCHAR}, + + + #{orderno,jdbcType=VARCHAR}, + + + #{price,jdbcType=DECIMAL}, + + + #{type,jdbcType=VARCHAR}, + + + #{groupno,jdbcType=VARCHAR}, + + + #{buymercname,jdbcType=VARCHAR}, + + + #{buymercid,jdbcType=VARCHAR}, + + + #{actmercname,jdbcType=VARCHAR}, + + + #{actmercid,jdbcType=VARCHAR}, + + + #{status,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{createby,jdbcType=VARCHAR}, + + + #{delflag,jdbcType=VARCHAR}, + + + #{remarks,jdbcType=VARCHAR}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{deviceno,jdbcType=VARCHAR}, + + + #{belonguserid,jdbcType=INTEGER}, + + + #{extractuserid,jdbcType=INTEGER}, + + + #{rolecode,jdbcType=VARCHAR}, + + + #{instocktime,jdbcType=TIMESTAMP}, + + + #{transferstatus,jdbcType=VARCHAR}, + + + #{bindtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_device_stock + + + code = #{code,jdbcType=VARCHAR}, + + + snNo = #{snno,jdbcType=VARCHAR}, + + + orderNo = #{orderno,jdbcType=VARCHAR}, + + + price = #{price,jdbcType=DECIMAL}, + + + type = #{type,jdbcType=VARCHAR}, + + + groupNo = #{groupno,jdbcType=VARCHAR}, + + + buyMercName = #{buymercname,jdbcType=VARCHAR}, + + + buyMercId = #{buymercid,jdbcType=VARCHAR}, + + + actMercName = #{actmercname,jdbcType=VARCHAR}, + + + actMercId = #{actmercid,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + createBy = #{createby,jdbcType=VARCHAR}, + + + delFlag = #{delflag,jdbcType=VARCHAR}, + + + remarks = #{remarks,jdbcType=VARCHAR}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + deviceNo = #{deviceno,jdbcType=VARCHAR}, + + + belongUserId = #{belonguserid,jdbcType=INTEGER}, + + + extractUserId = #{extractuserid,jdbcType=INTEGER}, + + + roleCode = #{rolecode,jdbcType=VARCHAR}, + + + inStockTime = #{instocktime,jdbcType=TIMESTAMP}, + + + transferStatus = #{transferstatus,jdbcType=VARCHAR}, + + + bindTime = #{bindtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_device_stock + set code = #{code,jdbcType=VARCHAR}, + snNo = #{snno,jdbcType=VARCHAR}, + orderNo = #{orderno,jdbcType=VARCHAR}, + price = #{price,jdbcType=DECIMAL}, + type = #{type,jdbcType=VARCHAR}, + groupNo = #{groupno,jdbcType=VARCHAR}, + buyMercName = #{buymercname,jdbcType=VARCHAR}, + buyMercId = #{buymercid,jdbcType=VARCHAR}, + actMercName = #{actmercname,jdbcType=VARCHAR}, + actMercId = #{actmercid,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + createBy = #{createby,jdbcType=VARCHAR}, + delFlag = #{delflag,jdbcType=VARCHAR}, + remarks = #{remarks,jdbcType=VARCHAR}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + deviceNo = #{deviceno,jdbcType=VARCHAR}, + belongUserId = #{belonguserid,jdbcType=INTEGER}, + extractUserId = #{extractuserid,jdbcType=INTEGER}, + roleCode = #{rolecode,jdbcType=VARCHAR}, + inStockTime = #{instocktime,jdbcType=TIMESTAMP}, + transferStatus = #{transferstatus,jdbcType=VARCHAR}, + bindTime = #{bindtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceTransferDetailMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceTransferDetailMapper.xml new file mode 100644 index 0000000..66d4399 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceTransferDetailMapper.xml @@ -0,0 +1,93 @@ + + + + + + + + + + + + id, tid, deviceNo, createTime, batchNo + + + + delete from tb_pluss_device_transfer_detail + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_device_transfer_detail (id, tid, deviceNo, + createTime, batchNo) + values (#{id,jdbcType=INTEGER}, #{tid,jdbcType=INTEGER}, #{deviceno,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{batchno,jdbcType=VARCHAR}) + + + insert into tb_pluss_device_transfer_detail + + + id, + + + tid, + + + deviceNo, + + + createTime, + + + batchNo, + + + + + #{id,jdbcType=INTEGER}, + + + #{tid,jdbcType=INTEGER}, + + + #{deviceno,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{batchno,jdbcType=VARCHAR}, + + + + + update tb_pluss_device_transfer_detail + + + tid = #{tid,jdbcType=INTEGER}, + + + deviceNo = #{deviceno,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + batchNo = #{batchno,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_device_transfer_detail + set tid = #{tid,jdbcType=INTEGER}, + deviceNo = #{deviceno,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + batchNo = #{batchno,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceTransferMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceTransferMapper.xml new file mode 100644 index 0000000..0188d6e --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceTransferMapper.xml @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + id, userId, acceptUserId, status, transferTime, acceptTime, batchNo, remark + + + + delete from tb_pluss_device_transfer + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_device_transfer (id, userId, acceptUserId, + status, transferTime, acceptTime, + batchNo, remark) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{acceptuserid,jdbcType=INTEGER}, + #{status,jdbcType=VARCHAR}, #{transfertime,jdbcType=TIMESTAMP}, #{accepttime,jdbcType=TIMESTAMP}, + #{batchno,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR}) + + + insert into tb_pluss_device_transfer + + + id, + + + userId, + + + acceptUserId, + + + status, + + + transferTime, + + + acceptTime, + + + batchNo, + + + remark, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{acceptuserid,jdbcType=INTEGER}, + + + #{status,jdbcType=VARCHAR}, + + + #{transfertime,jdbcType=TIMESTAMP}, + + + #{accepttime,jdbcType=TIMESTAMP}, + + + #{batchno,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + + + update tb_pluss_device_transfer + + + userId = #{userid,jdbcType=INTEGER}, + + + acceptUserId = #{acceptuserid,jdbcType=INTEGER}, + + + status = #{status,jdbcType=VARCHAR}, + + + transferTime = #{transfertime,jdbcType=TIMESTAMP}, + + + acceptTime = #{accepttime,jdbcType=TIMESTAMP}, + + + batchNo = #{batchno,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_device_transfer + set userId = #{userid,jdbcType=INTEGER}, + acceptUserId = #{acceptuserid,jdbcType=INTEGER}, + status = #{status,jdbcType=VARCHAR}, + transferTime = #{transfertime,jdbcType=TIMESTAMP}, + acceptTime = #{accepttime,jdbcType=TIMESTAMP}, + batchNo = #{batchno,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceTypeMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceTypeMapper.xml new file mode 100644 index 0000000..ec1be86 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceTypeMapper.xml @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + id, code, name, desc, createTime, updateTime, creator, updater, showFlag, deviceLogo, + payCodeFlag + + + + delete from tb_pluss_device_type + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_device_type (id, code, name, + desc, createTime, updateTime, + creator, updater, showFlag, + deviceLogo, payCodeFlag) + values (#{id,jdbcType=INTEGER}, #{code,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, + #{desc,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}, + #{creator,jdbcType=INTEGER}, #{updater,jdbcType=INTEGER}, #{showflag,jdbcType=VARCHAR}, + #{devicelogo,jdbcType=VARCHAR}, #{paycodeflag,jdbcType=VARCHAR}) + + + insert into tb_pluss_device_type + + + id, + + + code, + + + name, + + + desc, + + + createTime, + + + updateTime, + + + creator, + + + updater, + + + showFlag, + + + deviceLogo, + + + payCodeFlag, + + + + + #{id,jdbcType=INTEGER}, + + + #{code,jdbcType=VARCHAR}, + + + #{name,jdbcType=VARCHAR}, + + + #{desc,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{creator,jdbcType=INTEGER}, + + + #{updater,jdbcType=INTEGER}, + + + #{showflag,jdbcType=VARCHAR}, + + + #{devicelogo,jdbcType=VARCHAR}, + + + #{paycodeflag,jdbcType=VARCHAR}, + + + + + update tb_pluss_device_type + + + code = #{code,jdbcType=VARCHAR}, + + + name = #{name,jdbcType=VARCHAR}, + + + desc = #{desc,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + creator = #{creator,jdbcType=INTEGER}, + + + updater = #{updater,jdbcType=INTEGER}, + + + showFlag = #{showflag,jdbcType=VARCHAR}, + + + deviceLogo = #{devicelogo,jdbcType=VARCHAR}, + + + payCodeFlag = #{paycodeflag,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_device_type + set code = #{code,jdbcType=VARCHAR}, + name = #{name,jdbcType=VARCHAR}, + desc = #{desc,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + creator = #{creator,jdbcType=INTEGER}, + updater = #{updater,jdbcType=INTEGER}, + showFlag = #{showflag,jdbcType=VARCHAR}, + deviceLogo = #{devicelogo,jdbcType=VARCHAR}, + payCodeFlag = #{paycodeflag,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceVoiceBoxMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceVoiceBoxMapper.xml new file mode 100644 index 0000000..7d77f6a --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceVoiceBoxMapper.xml @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + id, boxName, boxNo, buyMercName, buyMercId, orderNo, actMercName, actMercId, status, + createTime, updateTime + + + + delete from tb_pluss_device_voice_box + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_device_voice_box (id, boxName, boxNo, + buyMercName, buyMercId, orderNo, + actMercName, actMercId, status, + createTime, updateTime) + values (#{id,jdbcType=INTEGER}, #{boxname,jdbcType=VARCHAR}, #{boxno,jdbcType=VARCHAR}, + #{buymercname,jdbcType=VARCHAR}, #{buymercid,jdbcType=INTEGER}, #{orderno,jdbcType=VARCHAR}, + #{actmercname,jdbcType=VARCHAR}, #{actmercid,jdbcType=INTEGER}, #{status,jdbcType=CHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_device_voice_box + + + id, + + + boxName, + + + boxNo, + + + buyMercName, + + + buyMercId, + + + orderNo, + + + actMercName, + + + actMercId, + + + status, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{boxname,jdbcType=VARCHAR}, + + + #{boxno,jdbcType=VARCHAR}, + + + #{buymercname,jdbcType=VARCHAR}, + + + #{buymercid,jdbcType=INTEGER}, + + + #{orderno,jdbcType=VARCHAR}, + + + #{actmercname,jdbcType=VARCHAR}, + + + #{actmercid,jdbcType=INTEGER}, + + + #{status,jdbcType=CHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_device_voice_box + + + boxName = #{boxname,jdbcType=VARCHAR}, + + + boxNo = #{boxno,jdbcType=VARCHAR}, + + + buyMercName = #{buymercname,jdbcType=VARCHAR}, + + + buyMercId = #{buymercid,jdbcType=INTEGER}, + + + orderNo = #{orderno,jdbcType=VARCHAR}, + + + actMercName = #{actmercname,jdbcType=VARCHAR}, + + + actMercId = #{actmercid,jdbcType=INTEGER}, + + + status = #{status,jdbcType=CHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_device_voice_box + set boxName = #{boxname,jdbcType=VARCHAR}, + boxNo = #{boxno,jdbcType=VARCHAR}, + buyMercName = #{buymercname,jdbcType=VARCHAR}, + buyMercId = #{buymercid,jdbcType=INTEGER}, + orderNo = #{orderno,jdbcType=VARCHAR}, + actMercName = #{actmercname,jdbcType=VARCHAR}, + actMercId = #{actmercid,jdbcType=INTEGER}, + status = #{status,jdbcType=CHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceVoiceBoxMsgMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceVoiceBoxMsgMapper.xml new file mode 100644 index 0000000..ee8e057 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussDeviceVoiceBoxMsgMapper.xml @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + + + id, requestId, msgId, createTime, deviceNo, orderNumber, type + + + body, respBody + + + + delete from tb_pluss_device_voice_box_msg + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_device_voice_box_msg (id, requestId, msgId, + createTime, deviceNo, orderNumber, + type, body, respBody + ) + values (#{id,jdbcType=INTEGER}, #{requestid,jdbcType=VARCHAR}, #{msgid,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{deviceno,jdbcType=VARCHAR}, #{ordernumber,jdbcType=VARCHAR}, + #{type,jdbcType=VARCHAR}, #{body,jdbcType=LONGVARCHAR}, #{respbody,jdbcType=LONGVARCHAR} + ) + + + insert into tb_pluss_device_voice_box_msg + + + id, + + + requestId, + + + msgId, + + + createTime, + + + deviceNo, + + + orderNumber, + + + type, + + + body, + + + respBody, + + + + + #{id,jdbcType=INTEGER}, + + + #{requestid,jdbcType=VARCHAR}, + + + #{msgid,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{deviceno,jdbcType=VARCHAR}, + + + #{ordernumber,jdbcType=VARCHAR}, + + + #{type,jdbcType=VARCHAR}, + + + #{body,jdbcType=LONGVARCHAR}, + + + #{respbody,jdbcType=LONGVARCHAR}, + + + + + update tb_pluss_device_voice_box_msg + + + requestId = #{requestid,jdbcType=VARCHAR}, + + + msgId = #{msgid,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + deviceNo = #{deviceno,jdbcType=VARCHAR}, + + + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + + + type = #{type,jdbcType=VARCHAR}, + + + body = #{body,jdbcType=LONGVARCHAR}, + + + respBody = #{respbody,jdbcType=LONGVARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_device_voice_box_msg + set requestId = #{requestid,jdbcType=VARCHAR}, + msgId = #{msgid,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + deviceNo = #{deviceno,jdbcType=VARCHAR}, + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + type = #{type,jdbcType=VARCHAR}, + body = #{body,jdbcType=LONGVARCHAR}, + respBody = #{respbody,jdbcType=LONGVARCHAR} + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_device_voice_box_msg + set requestId = #{requestid,jdbcType=VARCHAR}, + msgId = #{msgid,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + deviceNo = #{deviceno,jdbcType=VARCHAR}, + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + type = #{type,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussDictMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussDictMapper.xml new file mode 100644 index 0000000..e1f9b7c --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussDictMapper.xml @@ -0,0 +1,139 @@ + + + + + + + + + + + + + + + + id, pid, sort, code, name, desc, value, createTime, updateTime + + + + delete from tb_pluss_dict + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_dict (id, pid, sort, + code, name, desc, value, + createTime, updateTime) + values (#{id,jdbcType=INTEGER}, #{pid,jdbcType=INTEGER}, #{sort,jdbcType=INTEGER}, + #{code,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, #{desc,jdbcType=VARCHAR}, #{value,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_dict + + + id, + + + pid, + + + sort, + + + code, + + + name, + + + desc, + + + value, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{pid,jdbcType=INTEGER}, + + + #{sort,jdbcType=INTEGER}, + + + #{code,jdbcType=VARCHAR}, + + + #{name,jdbcType=VARCHAR}, + + + #{desc,jdbcType=VARCHAR}, + + + #{value,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_dict + + + pid = #{pid,jdbcType=INTEGER}, + + + sort = #{sort,jdbcType=INTEGER}, + + + code = #{code,jdbcType=VARCHAR}, + + + name = #{name,jdbcType=VARCHAR}, + + + desc = #{desc,jdbcType=VARCHAR}, + + + value = #{value,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_dict + set pid = #{pid,jdbcType=INTEGER}, + sort = #{sort,jdbcType=INTEGER}, + code = #{code,jdbcType=VARCHAR}, + name = #{name,jdbcType=VARCHAR}, + desc = #{desc,jdbcType=VARCHAR}, + value = #{value,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussEncryptKeyMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussEncryptKeyMapper.xml new file mode 100644 index 0000000..fccacc7 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussEncryptKeyMapper.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + id, name, code, desc, version, status, createTime, updateTime + + + priKey, pubKey + + + + delete from tb_pluss_encrypt_key + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_encrypt_key (id, name, code, + desc, version, status, + createTime, updateTime, priKey, + pubKey) + values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{code,jdbcType=VARCHAR}, + #{desc,jdbcType=VARCHAR}, #{version,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}, #{prikey,jdbcType=LONGVARCHAR}, + #{pubkey,jdbcType=LONGVARCHAR}) + + + insert into tb_pluss_encrypt_key + + + id, + + + name, + + + code, + + + desc, + + + version, + + + status, + + + createTime, + + + updateTime, + + + priKey, + + + pubKey, + + + + + #{id,jdbcType=INTEGER}, + + + #{name,jdbcType=VARCHAR}, + + + #{code,jdbcType=VARCHAR}, + + + #{desc,jdbcType=VARCHAR}, + + + #{version,jdbcType=VARCHAR}, + + + #{status,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{prikey,jdbcType=LONGVARCHAR}, + + + #{pubkey,jdbcType=LONGVARCHAR}, + + + + + update tb_pluss_encrypt_key + + + name = #{name,jdbcType=VARCHAR}, + + + code = #{code,jdbcType=VARCHAR}, + + + desc = #{desc,jdbcType=VARCHAR}, + + + version = #{version,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + priKey = #{prikey,jdbcType=LONGVARCHAR}, + + + pubKey = #{pubkey,jdbcType=LONGVARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_encrypt_key + set name = #{name,jdbcType=VARCHAR}, + code = #{code,jdbcType=VARCHAR}, + desc = #{desc,jdbcType=VARCHAR}, + version = #{version,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + priKey = #{prikey,jdbcType=LONGVARCHAR}, + pubKey = #{pubkey,jdbcType=LONGVARCHAR} + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_encrypt_key + set name = #{name,jdbcType=VARCHAR}, + code = #{code,jdbcType=VARCHAR}, + desc = #{desc,jdbcType=VARCHAR}, + version = #{version,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussExtraLevelBenefitMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussExtraLevelBenefitMapper.xml new file mode 100644 index 0000000..a3b2fb9 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussExtraLevelBenefitMapper.xml @@ -0,0 +1,106 @@ + + + + + + + + + + + + + id, userId, maxCount, useCount, createTime, updateTime + + + + delete from tb_pluss_extra_level_benefit + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_extra_level_benefit (id, userId, maxCount, + useCount, createTime, updateTime + ) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{maxcount,jdbcType=INTEGER}, + #{usecount,jdbcType=INTEGER}, #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP} + ) + + + insert into tb_pluss_extra_level_benefit + + + id, + + + userId, + + + maxCount, + + + useCount, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{maxcount,jdbcType=INTEGER}, + + + #{usecount,jdbcType=INTEGER}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_extra_level_benefit + + + userId = #{userid,jdbcType=INTEGER}, + + + maxCount = #{maxcount,jdbcType=INTEGER}, + + + useCount = #{usecount,jdbcType=INTEGER}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_extra_level_benefit + set userId = #{userid,jdbcType=INTEGER}, + maxCount = #{maxcount,jdbcType=INTEGER}, + useCount = #{usecount,jdbcType=INTEGER}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussFansConsumReturnMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussFansConsumReturnMapper.xml new file mode 100644 index 0000000..1e2a379 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussFansConsumReturnMapper.xml @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + id, logo, nickName, consumMony, merchantCode, merchantName, returnMoney, consumTime, + orderNumber, createDt + + + + delete from tb_pluss_fans_consum_return + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_fans_consum_return (id, logo, nickName, + consumMony, merchantCode, merchantName, + returnMoney, consumTime, orderNumber, + createDt) + values (#{id,jdbcType=INTEGER}, #{logo,jdbcType=VARCHAR}, #{nickname,jdbcType=VARCHAR}, + #{consummony,jdbcType=DOUBLE}, #{merchantcode,jdbcType=VARCHAR}, #{merchantname,jdbcType=VARCHAR}, + #{returnmoney,jdbcType=DOUBLE}, #{consumtime,jdbcType=TIMESTAMP}, #{ordernumber,jdbcType=VARCHAR}, + #{createdt,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_fans_consum_return + + + id, + + + logo, + + + nickName, + + + consumMony, + + + merchantCode, + + + merchantName, + + + returnMoney, + + + consumTime, + + + orderNumber, + + + createDt, + + + + + #{id,jdbcType=INTEGER}, + + + #{logo,jdbcType=VARCHAR}, + + + #{nickname,jdbcType=VARCHAR}, + + + #{consummony,jdbcType=DOUBLE}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{returnmoney,jdbcType=DOUBLE}, + + + #{consumtime,jdbcType=TIMESTAMP}, + + + #{ordernumber,jdbcType=VARCHAR}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_fans_consum_return + + + logo = #{logo,jdbcType=VARCHAR}, + + + nickName = #{nickname,jdbcType=VARCHAR}, + + + consumMony = #{consummony,jdbcType=DOUBLE}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + returnMoney = #{returnmoney,jdbcType=DOUBLE}, + + + consumTime = #{consumtime,jdbcType=TIMESTAMP}, + + + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_fans_consum_return + set logo = #{logo,jdbcType=VARCHAR}, + nickName = #{nickname,jdbcType=VARCHAR}, + consumMony = #{consummony,jdbcType=DOUBLE}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + returnMoney = #{returnmoney,jdbcType=DOUBLE}, + consumTime = #{consumtime,jdbcType=TIMESTAMP}, + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussFansMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussFansMapper.xml new file mode 100644 index 0000000..5bec3dd --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussFansMapper.xml @@ -0,0 +1,235 @@ + + + + + + + + + + + + + + + + + + + + + + + + id, userId, logo, nickName, consumMoney, merchantCode, merchantName, lastMerchantCode, + shareMoney, consumAddress, consumTime, lastconsumTime, orderNumber, lastOrderNumber, + createDt, payWay, isUse + + + + delete from tb_pluss_fans + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_fans (id, userId, logo, + nickName, consumMoney, merchantCode, + merchantName, lastMerchantCode, shareMoney, + consumAddress, consumTime, lastconsumTime, + orderNumber, lastOrderNumber, createDt, + payWay, isUse) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=VARCHAR}, #{logo,jdbcType=VARCHAR}, + #{nickname,jdbcType=VARCHAR}, #{consummoney,jdbcType=DOUBLE}, #{merchantcode,jdbcType=VARCHAR}, + #{merchantname,jdbcType=VARCHAR}, #{lastmerchantcode,jdbcType=VARCHAR}, #{sharemoney,jdbcType=VARCHAR}, + #{consumaddress,jdbcType=VARCHAR}, #{consumtime,jdbcType=TIMESTAMP}, #{lastconsumtime,jdbcType=TIMESTAMP}, + #{ordernumber,jdbcType=VARCHAR}, #{lastordernumber,jdbcType=VARCHAR}, #{createdt,jdbcType=TIMESTAMP}, + #{payway,jdbcType=VARCHAR}, #{isuse,jdbcType=VARCHAR}) + + + insert into tb_pluss_fans + + + id, + + + userId, + + + logo, + + + nickName, + + + consumMoney, + + + merchantCode, + + + merchantName, + + + lastMerchantCode, + + + shareMoney, + + + consumAddress, + + + consumTime, + + + lastconsumTime, + + + orderNumber, + + + lastOrderNumber, + + + createDt, + + + payWay, + + + isUse, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=VARCHAR}, + + + #{logo,jdbcType=VARCHAR}, + + + #{nickname,jdbcType=VARCHAR}, + + + #{consummoney,jdbcType=DOUBLE}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{lastmerchantcode,jdbcType=VARCHAR}, + + + #{sharemoney,jdbcType=VARCHAR}, + + + #{consumaddress,jdbcType=VARCHAR}, + + + #{consumtime,jdbcType=TIMESTAMP}, + + + #{lastconsumtime,jdbcType=TIMESTAMP}, + + + #{ordernumber,jdbcType=VARCHAR}, + + + #{lastordernumber,jdbcType=VARCHAR}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{payway,jdbcType=VARCHAR}, + + + #{isuse,jdbcType=VARCHAR}, + + + + + update tb_pluss_fans + + + userId = #{userid,jdbcType=VARCHAR}, + + + logo = #{logo,jdbcType=VARCHAR}, + + + nickName = #{nickname,jdbcType=VARCHAR}, + + + consumMoney = #{consummoney,jdbcType=DOUBLE}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + lastMerchantCode = #{lastmerchantcode,jdbcType=VARCHAR}, + + + shareMoney = #{sharemoney,jdbcType=VARCHAR}, + + + consumAddress = #{consumaddress,jdbcType=VARCHAR}, + + + consumTime = #{consumtime,jdbcType=TIMESTAMP}, + + + lastconsumTime = #{lastconsumtime,jdbcType=TIMESTAMP}, + + + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + + + lastOrderNumber = #{lastordernumber,jdbcType=VARCHAR}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + payWay = #{payway,jdbcType=VARCHAR}, + + + isUse = #{isuse,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_fans + set userId = #{userid,jdbcType=VARCHAR}, + logo = #{logo,jdbcType=VARCHAR}, + nickName = #{nickname,jdbcType=VARCHAR}, + consumMoney = #{consummoney,jdbcType=DOUBLE}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + lastMerchantCode = #{lastmerchantcode,jdbcType=VARCHAR}, + shareMoney = #{sharemoney,jdbcType=VARCHAR}, + consumAddress = #{consumaddress,jdbcType=VARCHAR}, + consumTime = #{consumtime,jdbcType=TIMESTAMP}, + lastconsumTime = #{lastconsumtime,jdbcType=TIMESTAMP}, + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + lastOrderNumber = #{lastordernumber,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + payWay = #{payway,jdbcType=VARCHAR}, + isUse = #{isuse,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussGuideLabelMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussGuideLabelMapper.xml new file mode 100644 index 0000000..51ed98d --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussGuideLabelMapper.xml @@ -0,0 +1,93 @@ + + + + + + + + + + + + id, name, status, createTime, updateTime + + + + delete from tb_pluss_guide_label + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_guide_label (id, name, status, + createTime, updateTime) + values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{status,jdbcType=CHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_guide_label + + + id, + + + name, + + + status, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{name,jdbcType=VARCHAR}, + + + #{status,jdbcType=CHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_guide_label + + + name = #{name,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=CHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_guide_label + set name = #{name,jdbcType=VARCHAR}, + status = #{status,jdbcType=CHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussHelpVideoMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussHelpVideoMapper.xml new file mode 100644 index 0000000..43dd85c --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussHelpVideoMapper.xml @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + id, name, createDt, content, videoUrl, type, sort + + + + delete from tb_pluss_help_video + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_help_video (id, name, createDt, + content, videoUrl, type, + sort) + values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{createdt,jdbcType=TIMESTAMP}, + #{content,jdbcType=VARCHAR}, #{videourl,jdbcType=VARCHAR}, #{type,jdbcType=VARCHAR}, + #{sort,jdbcType=INTEGER}) + + + insert into tb_pluss_help_video + + + id, + + + name, + + + createDt, + + + content, + + + videoUrl, + + + type, + + + sort, + + + + + #{id,jdbcType=INTEGER}, + + + #{name,jdbcType=VARCHAR}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{content,jdbcType=VARCHAR}, + + + #{videourl,jdbcType=VARCHAR}, + + + #{type,jdbcType=VARCHAR}, + + + #{sort,jdbcType=INTEGER}, + + + + + update tb_pluss_help_video + + + name = #{name,jdbcType=VARCHAR}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + content = #{content,jdbcType=VARCHAR}, + + + videoUrl = #{videourl,jdbcType=VARCHAR}, + + + type = #{type,jdbcType=VARCHAR}, + + + sort = #{sort,jdbcType=INTEGER}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_help_video + set name = #{name,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + content = #{content,jdbcType=VARCHAR}, + videoUrl = #{videourl,jdbcType=VARCHAR}, + type = #{type,jdbcType=VARCHAR}, + sort = #{sort,jdbcType=INTEGER} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussIdCardCacheMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussIdCardCacheMapper.xml new file mode 100644 index 0000000..d99f616 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussIdCardCacheMapper.xml @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + id, name, certNo, certStartTime, certEndTime, imgPositive, address + + + + delete from tb_pluss_id_card_cache + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_id_card_cache (id, name, certNo, + certStartTime, certEndTime, imgPositive, + address) + values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{certno,jdbcType=VARCHAR}, + #{certstarttime,jdbcType=VARCHAR}, #{certendtime,jdbcType=VARCHAR}, #{imgpositive,jdbcType=VARCHAR}, + #{address,jdbcType=VARCHAR}) + + + insert into tb_pluss_id_card_cache + + + id, + + + name, + + + certNo, + + + certStartTime, + + + certEndTime, + + + imgPositive, + + + address, + + + + + #{id,jdbcType=INTEGER}, + + + #{name,jdbcType=VARCHAR}, + + + #{certno,jdbcType=VARCHAR}, + + + #{certstarttime,jdbcType=VARCHAR}, + + + #{certendtime,jdbcType=VARCHAR}, + + + #{imgpositive,jdbcType=VARCHAR}, + + + #{address,jdbcType=VARCHAR}, + + + + + update tb_pluss_id_card_cache + + + name = #{name,jdbcType=VARCHAR}, + + + certNo = #{certno,jdbcType=VARCHAR}, + + + certStartTime = #{certstarttime,jdbcType=VARCHAR}, + + + certEndTime = #{certendtime,jdbcType=VARCHAR}, + + + imgPositive = #{imgpositive,jdbcType=VARCHAR}, + + + address = #{address,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_id_card_cache + set name = #{name,jdbcType=VARCHAR}, + certNo = #{certno,jdbcType=VARCHAR}, + certStartTime = #{certstarttime,jdbcType=VARCHAR}, + certEndTime = #{certendtime,jdbcType=VARCHAR}, + imgPositive = #{imgpositive,jdbcType=VARCHAR}, + address = #{address,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussIdCardMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussIdCardMapper.xml new file mode 100644 index 0000000..c134aa3 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussIdCardMapper.xml @@ -0,0 +1,199 @@ + + + + + + + + + + + + + + + + + + + + + id, userId, userType, certType, certNo, certName, certStartTime, certEndTime, certAddress, + createTime, updateTime, imgPositive, imgNegative, virTypeFlag + + + + delete from tb_pluss_id_card + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_id_card (id, userId, userType, + certType, certNo, certName, + certStartTime, certEndTime, certAddress, + createTime, updateTime, imgPositive, + imgNegative, virTypeFlag) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{usertype,jdbcType=VARCHAR}, + #{certtype,jdbcType=VARCHAR}, #{certno,jdbcType=VARCHAR}, #{certname,jdbcType=VARCHAR}, + #{certstarttime,jdbcType=VARCHAR}, #{certendtime,jdbcType=VARCHAR}, #{certaddress,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}, #{imgpositive,jdbcType=VARCHAR}, + #{imgnegative,jdbcType=VARCHAR}, #{virtypeflag,jdbcType=VARCHAR}) + + + insert into tb_pluss_id_card + + + id, + + + userId, + + + userType, + + + certType, + + + certNo, + + + certName, + + + certStartTime, + + + certEndTime, + + + certAddress, + + + createTime, + + + updateTime, + + + imgPositive, + + + imgNegative, + + + virTypeFlag, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{usertype,jdbcType=VARCHAR}, + + + #{certtype,jdbcType=VARCHAR}, + + + #{certno,jdbcType=VARCHAR}, + + + #{certname,jdbcType=VARCHAR}, + + + #{certstarttime,jdbcType=VARCHAR}, + + + #{certendtime,jdbcType=VARCHAR}, + + + #{certaddress,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{imgpositive,jdbcType=VARCHAR}, + + + #{imgnegative,jdbcType=VARCHAR}, + + + #{virtypeflag,jdbcType=VARCHAR}, + + + + + update tb_pluss_id_card + + + userId = #{userid,jdbcType=INTEGER}, + + + userType = #{usertype,jdbcType=VARCHAR}, + + + certType = #{certtype,jdbcType=VARCHAR}, + + + certNo = #{certno,jdbcType=VARCHAR}, + + + certName = #{certname,jdbcType=VARCHAR}, + + + certStartTime = #{certstarttime,jdbcType=VARCHAR}, + + + certEndTime = #{certendtime,jdbcType=VARCHAR}, + + + certAddress = #{certaddress,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + imgPositive = #{imgpositive,jdbcType=VARCHAR}, + + + imgNegative = #{imgnegative,jdbcType=VARCHAR}, + + + virTypeFlag = #{virtypeflag,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_id_card + set userId = #{userid,jdbcType=INTEGER}, + userType = #{usertype,jdbcType=VARCHAR}, + certType = #{certtype,jdbcType=VARCHAR}, + certNo = #{certno,jdbcType=VARCHAR}, + certName = #{certname,jdbcType=VARCHAR}, + certStartTime = #{certstarttime,jdbcType=VARCHAR}, + certEndTime = #{certendtime,jdbcType=VARCHAR}, + certAddress = #{certaddress,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + imgPositive = #{imgpositive,jdbcType=VARCHAR}, + imgNegative = #{imgnegative,jdbcType=VARCHAR}, + virTypeFlag = #{virtypeflag,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussImgReflectMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussImgReflectMapper.xml new file mode 100644 index 0000000..a71108a --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussImgReflectMapper.xml @@ -0,0 +1,106 @@ + + + + + + + + + + + + + id, localUrl, ossUrl, createTime, updateTime, status + + + + delete from tb_pluss_img_reflect + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_img_reflect (id, localUrl, ossUrl, + createTime, updateTime, status + ) + values (#{id,jdbcType=INTEGER}, #{localurl,jdbcType=VARCHAR}, #{ossurl,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}, #{status,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_img_reflect + + + id, + + + localUrl, + + + ossUrl, + + + createTime, + + + updateTime, + + + status, + + + + + #{id,jdbcType=INTEGER}, + + + #{localurl,jdbcType=VARCHAR}, + + + #{ossurl,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{status,jdbcType=VARCHAR}, + + + + + update tb_pluss_img_reflect + + + localUrl = #{localurl,jdbcType=VARCHAR}, + + + ossUrl = #{ossurl,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + status = #{status,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_img_reflect + set localUrl = #{localurl,jdbcType=VARCHAR}, + ossUrl = #{ossurl,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + status = #{status,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussInviteRateMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussInviteRateMapper.xml new file mode 100644 index 0000000..a679b5b --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussInviteRateMapper.xml @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + + id, number, rate, startTime, endTime, createTime, updateTime, type, actId, actName + + + + delete from tb_pluss_invite_rate + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_invite_rate (id, number, rate, + startTime, endTime, createTime, + updateTime, type, actId, + actName) + values (#{id,jdbcType=INTEGER}, #{number,jdbcType=INTEGER}, #{rate,jdbcType=DECIMAL}, + #{starttime,jdbcType=TIMESTAMP}, #{endtime,jdbcType=TIMESTAMP}, #{createtime,jdbcType=TIMESTAMP}, + #{updatetime,jdbcType=TIMESTAMP}, #{type,jdbcType=VARCHAR}, #{actid,jdbcType=INTEGER}, + #{actname,jdbcType=VARCHAR}) + + + insert into tb_pluss_invite_rate + + + id, + + + number, + + + rate, + + + startTime, + + + endTime, + + + createTime, + + + updateTime, + + + type, + + + actId, + + + actName, + + + + + #{id,jdbcType=INTEGER}, + + + #{number,jdbcType=INTEGER}, + + + #{rate,jdbcType=DECIMAL}, + + + #{starttime,jdbcType=TIMESTAMP}, + + + #{endtime,jdbcType=TIMESTAMP}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{type,jdbcType=VARCHAR}, + + + #{actid,jdbcType=INTEGER}, + + + #{actname,jdbcType=VARCHAR}, + + + + + update tb_pluss_invite_rate + + + number = #{number,jdbcType=INTEGER}, + + + rate = #{rate,jdbcType=DECIMAL}, + + + startTime = #{starttime,jdbcType=TIMESTAMP}, + + + endTime = #{endtime,jdbcType=TIMESTAMP}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + type = #{type,jdbcType=VARCHAR}, + + + actId = #{actid,jdbcType=INTEGER}, + + + actName = #{actname,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_invite_rate + set number = #{number,jdbcType=INTEGER}, + rate = #{rate,jdbcType=DECIMAL}, + startTime = #{starttime,jdbcType=TIMESTAMP}, + endTime = #{endtime,jdbcType=TIMESTAMP}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + type = #{type,jdbcType=VARCHAR}, + actId = #{actid,jdbcType=INTEGER}, + actName = #{actname,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussIpLocationCacheMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussIpLocationCacheMapper.xml new file mode 100644 index 0000000..ba1c031 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussIpLocationCacheMapper.xml @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + id, ip, isp, country, province, city, county, createTime, updateTime + + + + delete from tb_pluss_ip_location_cache + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_ip_location_cache (id, ip, isp, + country, province, city, + county, createTime, updateTime + ) + values (#{id,jdbcType=INTEGER}, #{ip,jdbcType=VARCHAR}, #{isp,jdbcType=VARCHAR}, + #{country,jdbcType=VARCHAR}, #{province,jdbcType=VARCHAR}, #{city,jdbcType=VARCHAR}, + #{county,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP} + ) + + + insert into tb_pluss_ip_location_cache + + + id, + + + ip, + + + isp, + + + country, + + + province, + + + city, + + + county, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{ip,jdbcType=VARCHAR}, + + + #{isp,jdbcType=VARCHAR}, + + + #{country,jdbcType=VARCHAR}, + + + #{province,jdbcType=VARCHAR}, + + + #{city,jdbcType=VARCHAR}, + + + #{county,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_ip_location_cache + + + ip = #{ip,jdbcType=VARCHAR}, + + + isp = #{isp,jdbcType=VARCHAR}, + + + country = #{country,jdbcType=VARCHAR}, + + + province = #{province,jdbcType=VARCHAR}, + + + city = #{city,jdbcType=VARCHAR}, + + + county = #{county,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_ip_location_cache + set ip = #{ip,jdbcType=VARCHAR}, + isp = #{isp,jdbcType=VARCHAR}, + country = #{country,jdbcType=VARCHAR}, + province = #{province,jdbcType=VARCHAR}, + city = #{city,jdbcType=VARCHAR}, + county = #{county,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussJftBankCardMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussJftBankCardMapper.xml new file mode 100644 index 0000000..245e3c0 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussJftBankCardMapper.xml @@ -0,0 +1,248 @@ + + + + + + + + + + + + + + + + + + + + + + + + + id, userId, bankHolder, bankCardNo, bankName, branchName, contactLine, branchProvince, + branchCity, branchArea, phone, imgUrl, status, createTime, updateTime + + + bak + + + + delete from tb_pluss_jft_bank_card + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_jft_bank_card (id, userId, bankHolder, + bankCardNo, bankName, branchName, + contactLine, branchProvince, branchCity, + branchArea, phone, imgUrl, + status, createTime, updateTime, + bak) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{bankholder,jdbcType=VARCHAR}, + #{bankcardno,jdbcType=VARCHAR}, #{bankname,jdbcType=VARCHAR}, #{branchname,jdbcType=VARCHAR}, + #{contactline,jdbcType=VARCHAR}, #{branchprovince,jdbcType=VARCHAR}, #{branchcity,jdbcType=VARCHAR}, + #{brancharea,jdbcType=VARCHAR}, #{phone,jdbcType=VARCHAR}, #{imgurl,jdbcType=VARCHAR}, + #{status,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}, + #{bak,jdbcType=LONGVARCHAR}) + + + insert into tb_pluss_jft_bank_card + + + id, + + + userId, + + + bankHolder, + + + bankCardNo, + + + bankName, + + + branchName, + + + contactLine, + + + branchProvince, + + + branchCity, + + + branchArea, + + + phone, + + + imgUrl, + + + status, + + + createTime, + + + updateTime, + + + bak, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{bankholder,jdbcType=VARCHAR}, + + + #{bankcardno,jdbcType=VARCHAR}, + + + #{bankname,jdbcType=VARCHAR}, + + + #{branchname,jdbcType=VARCHAR}, + + + #{contactline,jdbcType=VARCHAR}, + + + #{branchprovince,jdbcType=VARCHAR}, + + + #{branchcity,jdbcType=VARCHAR}, + + + #{brancharea,jdbcType=VARCHAR}, + + + #{phone,jdbcType=VARCHAR}, + + + #{imgurl,jdbcType=VARCHAR}, + + + #{status,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{bak,jdbcType=LONGVARCHAR}, + + + + + update tb_pluss_jft_bank_card + + + userId = #{userid,jdbcType=INTEGER}, + + + bankHolder = #{bankholder,jdbcType=VARCHAR}, + + + bankCardNo = #{bankcardno,jdbcType=VARCHAR}, + + + bankName = #{bankname,jdbcType=VARCHAR}, + + + branchName = #{branchname,jdbcType=VARCHAR}, + + + contactLine = #{contactline,jdbcType=VARCHAR}, + + + branchProvince = #{branchprovince,jdbcType=VARCHAR}, + + + branchCity = #{branchcity,jdbcType=VARCHAR}, + + + branchArea = #{brancharea,jdbcType=VARCHAR}, + + + phone = #{phone,jdbcType=VARCHAR}, + + + imgUrl = #{imgurl,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + bak = #{bak,jdbcType=LONGVARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_jft_bank_card + set userId = #{userid,jdbcType=INTEGER}, + bankHolder = #{bankholder,jdbcType=VARCHAR}, + bankCardNo = #{bankcardno,jdbcType=VARCHAR}, + bankName = #{bankname,jdbcType=VARCHAR}, + branchName = #{branchname,jdbcType=VARCHAR}, + contactLine = #{contactline,jdbcType=VARCHAR}, + branchProvince = #{branchprovince,jdbcType=VARCHAR}, + branchCity = #{branchcity,jdbcType=VARCHAR}, + branchArea = #{brancharea,jdbcType=VARCHAR}, + phone = #{phone,jdbcType=VARCHAR}, + imgUrl = #{imgurl,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + bak = #{bak,jdbcType=LONGVARCHAR} + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_jft_bank_card + set userId = #{userid,jdbcType=INTEGER}, + bankHolder = #{bankholder,jdbcType=VARCHAR}, + bankCardNo = #{bankcardno,jdbcType=VARCHAR}, + bankName = #{bankname,jdbcType=VARCHAR}, + branchName = #{branchname,jdbcType=VARCHAR}, + contactLine = #{contactline,jdbcType=VARCHAR}, + branchProvince = #{branchprovince,jdbcType=VARCHAR}, + branchCity = #{branchcity,jdbcType=VARCHAR}, + branchArea = #{brancharea,jdbcType=VARCHAR}, + phone = #{phone,jdbcType=VARCHAR}, + imgUrl = #{imgurl,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussJftMercBaseInfoMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussJftMercBaseInfoMapper.xml new file mode 100644 index 0000000..303c2fa --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussJftMercBaseInfoMapper.xml @@ -0,0 +1,341 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, userId, merchantCode, merchantName, merchantType, mcc, mccName, alias, addressNo, + province, city, district, address, principalPerson, bussAuthName, bussAuthNum, bussAuthAddress, + bussAuthStartTime, bussAuthEndTime, createTime, updateTime, buslicType, frontPic, + cashDesk, interior, notifyUrl + + + + delete from tb_pluss_jft_merc_base_info + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_jft_merc_base_info (id, userId, merchantCode, + merchantName, merchantType, mcc, + mccName, alias, addressNo, + province, city, district, + address, principalPerson, bussAuthName, + bussAuthNum, bussAuthAddress, bussAuthStartTime, + bussAuthEndTime, createTime, updateTime, + buslicType, frontPic, cashDesk, + interior, notifyUrl) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, + #{merchantname,jdbcType=VARCHAR}, #{merchanttype,jdbcType=VARCHAR}, #{mcc,jdbcType=VARCHAR}, + #{mccname,jdbcType=VARCHAR}, #{alias,jdbcType=VARCHAR}, #{addressno,jdbcType=VARCHAR}, + #{province,jdbcType=VARCHAR}, #{city,jdbcType=VARCHAR}, #{district,jdbcType=VARCHAR}, + #{address,jdbcType=VARCHAR}, #{principalperson,jdbcType=VARCHAR}, #{bussauthname,jdbcType=VARCHAR}, + #{bussauthnum,jdbcType=VARCHAR}, #{bussauthaddress,jdbcType=VARCHAR}, #{bussauthstarttime,jdbcType=VARCHAR}, + #{bussauthendtime,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}, + #{buslictype,jdbcType=VARCHAR}, #{frontpic,jdbcType=VARCHAR}, #{cashdesk,jdbcType=VARCHAR}, + #{interior,jdbcType=VARCHAR}, #{notifyurl,jdbcType=VARCHAR}) + + + insert into tb_pluss_jft_merc_base_info + + + id, + + + userId, + + + merchantCode, + + + merchantName, + + + merchantType, + + + mcc, + + + mccName, + + + alias, + + + addressNo, + + + province, + + + city, + + + district, + + + address, + + + principalPerson, + + + bussAuthName, + + + bussAuthNum, + + + bussAuthAddress, + + + bussAuthStartTime, + + + bussAuthEndTime, + + + createTime, + + + updateTime, + + + buslicType, + + + frontPic, + + + cashDesk, + + + interior, + + + notifyUrl, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{merchanttype,jdbcType=VARCHAR}, + + + #{mcc,jdbcType=VARCHAR}, + + + #{mccname,jdbcType=VARCHAR}, + + + #{alias,jdbcType=VARCHAR}, + + + #{addressno,jdbcType=VARCHAR}, + + + #{province,jdbcType=VARCHAR}, + + + #{city,jdbcType=VARCHAR}, + + + #{district,jdbcType=VARCHAR}, + + + #{address,jdbcType=VARCHAR}, + + + #{principalperson,jdbcType=VARCHAR}, + + + #{bussauthname,jdbcType=VARCHAR}, + + + #{bussauthnum,jdbcType=VARCHAR}, + + + #{bussauthaddress,jdbcType=VARCHAR}, + + + #{bussauthstarttime,jdbcType=VARCHAR}, + + + #{bussauthendtime,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{buslictype,jdbcType=VARCHAR}, + + + #{frontpic,jdbcType=VARCHAR}, + + + #{cashdesk,jdbcType=VARCHAR}, + + + #{interior,jdbcType=VARCHAR}, + + + #{notifyurl,jdbcType=VARCHAR}, + + + + + update tb_pluss_jft_merc_base_info + + + userId = #{userid,jdbcType=INTEGER}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + merchantType = #{merchanttype,jdbcType=VARCHAR}, + + + mcc = #{mcc,jdbcType=VARCHAR}, + + + mccName = #{mccname,jdbcType=VARCHAR}, + + + alias = #{alias,jdbcType=VARCHAR}, + + + addressNo = #{addressno,jdbcType=VARCHAR}, + + + province = #{province,jdbcType=VARCHAR}, + + + city = #{city,jdbcType=VARCHAR}, + + + district = #{district,jdbcType=VARCHAR}, + + + address = #{address,jdbcType=VARCHAR}, + + + principalPerson = #{principalperson,jdbcType=VARCHAR}, + + + bussAuthName = #{bussauthname,jdbcType=VARCHAR}, + + + bussAuthNum = #{bussauthnum,jdbcType=VARCHAR}, + + + bussAuthAddress = #{bussauthaddress,jdbcType=VARCHAR}, + + + bussAuthStartTime = #{bussauthstarttime,jdbcType=VARCHAR}, + + + bussAuthEndTime = #{bussauthendtime,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + buslicType = #{buslictype,jdbcType=VARCHAR}, + + + frontPic = #{frontpic,jdbcType=VARCHAR}, + + + cashDesk = #{cashdesk,jdbcType=VARCHAR}, + + + interior = #{interior,jdbcType=VARCHAR}, + + + notifyUrl = #{notifyurl,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_jft_merc_base_info + set userId = #{userid,jdbcType=INTEGER}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + merchantType = #{merchanttype,jdbcType=VARCHAR}, + mcc = #{mcc,jdbcType=VARCHAR}, + mccName = #{mccname,jdbcType=VARCHAR}, + alias = #{alias,jdbcType=VARCHAR}, + addressNo = #{addressno,jdbcType=VARCHAR}, + province = #{province,jdbcType=VARCHAR}, + city = #{city,jdbcType=VARCHAR}, + district = #{district,jdbcType=VARCHAR}, + address = #{address,jdbcType=VARCHAR}, + principalPerson = #{principalperson,jdbcType=VARCHAR}, + bussAuthName = #{bussauthname,jdbcType=VARCHAR}, + bussAuthNum = #{bussauthnum,jdbcType=VARCHAR}, + bussAuthAddress = #{bussauthaddress,jdbcType=VARCHAR}, + bussAuthStartTime = #{bussauthstarttime,jdbcType=VARCHAR}, + bussAuthEndTime = #{bussauthendtime,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + buslicType = #{buslictype,jdbcType=VARCHAR}, + frontPic = #{frontpic,jdbcType=VARCHAR}, + cashDesk = #{cashdesk,jdbcType=VARCHAR}, + interior = #{interior,jdbcType=VARCHAR}, + notifyUrl = #{notifyurl,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussJftMercPaymentChannelMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussJftMercPaymentChannelMapper.xml new file mode 100644 index 0000000..e3e28d9 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussJftMercPaymentChannelMapper.xml @@ -0,0 +1,210 @@ + + + + + + + + + + + + + + + + + + + + + + id, userId, merchantCode, merchantId, status, thirdStatus, remark, createTime, passTime, + updateTime, applicationId, mercName + + + extra + + + + delete from tb_pluss_jft_merc_payment_channel + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_jft_merc_payment_channel (id, userId, merchantCode, + merchantId, status, thirdStatus, + remark, createTime, passTime, + updateTime, applicationId, mercName, + extra) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, + #{merchantid,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, #{thirdstatus,jdbcType=VARCHAR}, + #{remark,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{passtime,jdbcType=TIMESTAMP}, + #{updatetime,jdbcType=TIMESTAMP}, #{applicationid,jdbcType=VARCHAR}, #{mercname,jdbcType=VARCHAR}, + #{extra,jdbcType=LONGVARCHAR}) + + + insert into tb_pluss_jft_merc_payment_channel + + + id, + + + userId, + + + merchantCode, + + + merchantId, + + + status, + + + thirdStatus, + + + remark, + + + createTime, + + + passTime, + + + updateTime, + + + applicationId, + + + mercName, + + + extra, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantid,jdbcType=VARCHAR}, + + + #{status,jdbcType=VARCHAR}, + + + #{thirdstatus,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{passtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{applicationid,jdbcType=VARCHAR}, + + + #{mercname,jdbcType=VARCHAR}, + + + #{extra,jdbcType=LONGVARCHAR}, + + + + + update tb_pluss_jft_merc_payment_channel + + + userId = #{userid,jdbcType=INTEGER}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantId = #{merchantid,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=VARCHAR}, + + + thirdStatus = #{thirdstatus,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + passTime = #{passtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + applicationId = #{applicationid,jdbcType=VARCHAR}, + + + mercName = #{mercname,jdbcType=VARCHAR}, + + + extra = #{extra,jdbcType=LONGVARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_jft_merc_payment_channel + set userId = #{userid,jdbcType=INTEGER}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantId = #{merchantid,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + thirdStatus = #{thirdstatus,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + passTime = #{passtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + applicationId = #{applicationid,jdbcType=VARCHAR}, + mercName = #{mercname,jdbcType=VARCHAR}, + extra = #{extra,jdbcType=LONGVARCHAR} + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_jft_merc_payment_channel + set userId = #{userid,jdbcType=INTEGER}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantId = #{merchantid,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + thirdStatus = #{thirdstatus,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + passTime = #{passtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + applicationId = #{applicationid,jdbcType=VARCHAR}, + mercName = #{mercname,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussJftMerchantRateMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussJftMerchantRateMapper.xml new file mode 100644 index 0000000..a19829d --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussJftMerchantRateMapper.xml @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + id, userId, channel, merchantId, aliRate, createTime, updateTime + + + + delete from tb_pluss_jft_merchant_rate + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_jft_merchant_rate (id, userId, channel, + merchantId, aliRate, createTime, + updateTime) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{channel,jdbcType=INTEGER}, + #{merchantid,jdbcType=VARCHAR}, #{alirate,jdbcType=INTEGER}, #{createtime,jdbcType=TIMESTAMP}, + #{updatetime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_jft_merchant_rate + + + id, + + + userId, + + + channel, + + + merchantId, + + + aliRate, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{channel,jdbcType=INTEGER}, + + + #{merchantid,jdbcType=VARCHAR}, + + + #{alirate,jdbcType=INTEGER}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_jft_merchant_rate + + + userId = #{userid,jdbcType=INTEGER}, + + + channel = #{channel,jdbcType=INTEGER}, + + + merchantId = #{merchantid,jdbcType=VARCHAR}, + + + aliRate = #{alirate,jdbcType=INTEGER}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_jft_merchant_rate + set userId = #{userid,jdbcType=INTEGER}, + channel = #{channel,jdbcType=INTEGER}, + merchantId = #{merchantid,jdbcType=VARCHAR}, + aliRate = #{alirate,jdbcType=INTEGER}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussJftMerchantRateRecordMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussJftMerchantRateRecordMapper.xml new file mode 100644 index 0000000..7a8a1c5 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussJftMerchantRateRecordMapper.xml @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + id, channel, merchantId, aliRate, status, remark, createTime, updateTime, operationDate + + + + delete from tb_pluss_jft_merchant_rate_record + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_jft_merchant_rate_record (id, channel, merchantId, + aliRate, status, remark, + createTime, updateTime, operationDate + ) + values (#{id,jdbcType=INTEGER}, #{channel,jdbcType=INTEGER}, #{merchantid,jdbcType=VARCHAR}, + #{alirate,jdbcType=INTEGER}, #{status,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}, #{operationdate,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_jft_merchant_rate_record + + + id, + + + channel, + + + merchantId, + + + aliRate, + + + status, + + + remark, + + + createTime, + + + updateTime, + + + operationDate, + + + + + #{id,jdbcType=INTEGER}, + + + #{channel,jdbcType=INTEGER}, + + + #{merchantid,jdbcType=VARCHAR}, + + + #{alirate,jdbcType=INTEGER}, + + + #{status,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{operationdate,jdbcType=VARCHAR}, + + + + + update tb_pluss_jft_merchant_rate_record + + + channel = #{channel,jdbcType=INTEGER}, + + + merchantId = #{merchantid,jdbcType=VARCHAR}, + + + aliRate = #{alirate,jdbcType=INTEGER}, + + + status = #{status,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + operationDate = #{operationdate,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_jft_merchant_rate_record + set channel = #{channel,jdbcType=INTEGER}, + merchantId = #{merchantid,jdbcType=VARCHAR}, + aliRate = #{alirate,jdbcType=INTEGER}, + status = #{status,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + operationDate = #{operationdate,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussJftPaymentInfoMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussJftPaymentInfoMapper.xml new file mode 100644 index 0000000..c3f1d46 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussJftPaymentInfoMapper.xml @@ -0,0 +1,71 @@ + + + + + + + + + + id, code, name + + + + delete from tb_pluss_jft_payment_info + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_jft_payment_info (id, code, name + ) + values (#{id,jdbcType=INTEGER}, #{code,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_jft_payment_info + + + id, + + + code, + + + name, + + + + + #{id,jdbcType=INTEGER}, + + + #{code,jdbcType=VARCHAR}, + + + #{name,jdbcType=VARCHAR}, + + + + + update tb_pluss_jft_payment_info + + + code = #{code,jdbcType=VARCHAR}, + + + name = #{name,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_jft_payment_info + set code = #{code,jdbcType=VARCHAR}, + name = #{name,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussJftReceiptInfoMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussJftReceiptInfoMapper.xml new file mode 100644 index 0000000..b4a8a1f --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussJftReceiptInfoMapper.xml @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + id, projectName, amount, userId, status, createTime, endTime, token, qrCodeUrl, imageUrl, + ip + + + + delete from tb_pluss_jft_receipt_info + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_jft_receipt_info (id, projectName, amount, + userId, status, createTime, + endTime, token, qrCodeUrl, + imageUrl, ip) + values (#{id,jdbcType=INTEGER}, #{projectname,jdbcType=VARCHAR}, #{amount,jdbcType=DECIMAL}, + #{userid,jdbcType=INTEGER}, #{status,jdbcType=INTEGER}, #{createtime,jdbcType=TIMESTAMP}, + #{endtime,jdbcType=TIMESTAMP}, #{token,jdbcType=VARCHAR}, #{qrcodeurl,jdbcType=VARCHAR}, + #{imageurl,jdbcType=VARCHAR}, #{ip,jdbcType=VARCHAR}) + + + insert into tb_pluss_jft_receipt_info + + + id, + + + projectName, + + + amount, + + + userId, + + + status, + + + createTime, + + + endTime, + + + token, + + + qrCodeUrl, + + + imageUrl, + + + ip, + + + + + #{id,jdbcType=INTEGER}, + + + #{projectname,jdbcType=VARCHAR}, + + + #{amount,jdbcType=DECIMAL}, + + + #{userid,jdbcType=INTEGER}, + + + #{status,jdbcType=INTEGER}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{endtime,jdbcType=TIMESTAMP}, + + + #{token,jdbcType=VARCHAR}, + + + #{qrcodeurl,jdbcType=VARCHAR}, + + + #{imageurl,jdbcType=VARCHAR}, + + + #{ip,jdbcType=VARCHAR}, + + + + + update tb_pluss_jft_receipt_info + + + projectName = #{projectname,jdbcType=VARCHAR}, + + + amount = #{amount,jdbcType=DECIMAL}, + + + userId = #{userid,jdbcType=INTEGER}, + + + status = #{status,jdbcType=INTEGER}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + endTime = #{endtime,jdbcType=TIMESTAMP}, + + + token = #{token,jdbcType=VARCHAR}, + + + qrCodeUrl = #{qrcodeurl,jdbcType=VARCHAR}, + + + imageUrl = #{imageurl,jdbcType=VARCHAR}, + + + ip = #{ip,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_jft_receipt_info + set projectName = #{projectname,jdbcType=VARCHAR}, + amount = #{amount,jdbcType=DECIMAL}, + userId = #{userid,jdbcType=INTEGER}, + status = #{status,jdbcType=INTEGER}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + endTime = #{endtime,jdbcType=TIMESTAMP}, + token = #{token,jdbcType=VARCHAR}, + qrCodeUrl = #{qrcodeurl,jdbcType=VARCHAR}, + imageUrl = #{imageurl,jdbcType=VARCHAR}, + ip = #{ip,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussJftReceiptOrderMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussJftReceiptOrderMapper.xml new file mode 100644 index 0000000..21619fa --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussJftReceiptOrderMapper.xml @@ -0,0 +1,389 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, rid, amount, status, payType, orderNumber, userId, merchantCode, merchantName, + payUserId, name, phone, goods, address, transNo, channelTransNo, transTime, rate, + createTime, channelFee, mercFee, cashFee, payData, remark, createDate, profitFee, + payUserCity, subject, mercOrderNo, mercNotifyUrl + + + + delete from tb_pluss_jft_receipt_order + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_jft_receipt_order (id, rid, amount, + status, payType, orderNumber, + userId, merchantCode, merchantName, + payUserId, name, phone, + goods, address, transNo, + channelTransNo, transTime, rate, + createTime, channelFee, mercFee, + cashFee, payData, remark, + createDate, profitFee, payUserCity, + subject, mercOrderNo, mercNotifyUrl + ) + values (#{id,jdbcType=INTEGER}, #{rid,jdbcType=INTEGER}, #{amount,jdbcType=DECIMAL}, + #{status,jdbcType=VARCHAR}, #{paytype,jdbcType=VARCHAR}, #{ordernumber,jdbcType=VARCHAR}, + #{userid,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, #{merchantname,jdbcType=VARCHAR}, + #{payuserid,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, #{phone,jdbcType=VARCHAR}, + #{goods,jdbcType=VARCHAR}, #{address,jdbcType=VARCHAR}, #{transno,jdbcType=VARCHAR}, + #{channeltransno,jdbcType=VARCHAR}, #{transtime,jdbcType=TIMESTAMP}, #{rate,jdbcType=INTEGER}, + #{createtime,jdbcType=TIMESTAMP}, #{channelfee,jdbcType=DECIMAL}, #{mercfee,jdbcType=DECIMAL}, + #{cashfee,jdbcType=DECIMAL}, #{paydata,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR}, + #{createdate,jdbcType=DATE}, #{profitfee,jdbcType=DECIMAL}, #{payusercity,jdbcType=VARCHAR}, + #{subject,jdbcType=VARCHAR}, #{mercorderno,jdbcType=VARCHAR}, #{mercnotifyurl,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_jft_receipt_order + + + id, + + + rid, + + + amount, + + + status, + + + payType, + + + orderNumber, + + + userId, + + + merchantCode, + + + merchantName, + + + payUserId, + + + name, + + + phone, + + + goods, + + + address, + + + transNo, + + + channelTransNo, + + + transTime, + + + rate, + + + createTime, + + + channelFee, + + + mercFee, + + + cashFee, + + + payData, + + + remark, + + + createDate, + + + profitFee, + + + payUserCity, + + + subject, + + + mercOrderNo, + + + mercNotifyUrl, + + + + + #{id,jdbcType=INTEGER}, + + + #{rid,jdbcType=INTEGER}, + + + #{amount,jdbcType=DECIMAL}, + + + #{status,jdbcType=VARCHAR}, + + + #{paytype,jdbcType=VARCHAR}, + + + #{ordernumber,jdbcType=VARCHAR}, + + + #{userid,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{payuserid,jdbcType=VARCHAR}, + + + #{name,jdbcType=VARCHAR}, + + + #{phone,jdbcType=VARCHAR}, + + + #{goods,jdbcType=VARCHAR}, + + + #{address,jdbcType=VARCHAR}, + + + #{transno,jdbcType=VARCHAR}, + + + #{channeltransno,jdbcType=VARCHAR}, + + + #{transtime,jdbcType=TIMESTAMP}, + + + #{rate,jdbcType=INTEGER}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{channelfee,jdbcType=DECIMAL}, + + + #{mercfee,jdbcType=DECIMAL}, + + + #{cashfee,jdbcType=DECIMAL}, + + + #{paydata,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{createdate,jdbcType=DATE}, + + + #{profitfee,jdbcType=DECIMAL}, + + + #{payusercity,jdbcType=VARCHAR}, + + + #{subject,jdbcType=VARCHAR}, + + + #{mercorderno,jdbcType=VARCHAR}, + + + #{mercnotifyurl,jdbcType=VARCHAR}, + + + + + update tb_pluss_jft_receipt_order + + + rid = #{rid,jdbcType=INTEGER}, + + + amount = #{amount,jdbcType=DECIMAL}, + + + status = #{status,jdbcType=VARCHAR}, + + + payType = #{paytype,jdbcType=VARCHAR}, + + + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + + + userId = #{userid,jdbcType=INTEGER}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + payUserId = #{payuserid,jdbcType=VARCHAR}, + + + name = #{name,jdbcType=VARCHAR}, + + + phone = #{phone,jdbcType=VARCHAR}, + + + goods = #{goods,jdbcType=VARCHAR}, + + + address = #{address,jdbcType=VARCHAR}, + + + transNo = #{transno,jdbcType=VARCHAR}, + + + channelTransNo = #{channeltransno,jdbcType=VARCHAR}, + + + transTime = #{transtime,jdbcType=TIMESTAMP}, + + + rate = #{rate,jdbcType=INTEGER}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + channelFee = #{channelfee,jdbcType=DECIMAL}, + + + mercFee = #{mercfee,jdbcType=DECIMAL}, + + + cashFee = #{cashfee,jdbcType=DECIMAL}, + + + payData = #{paydata,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + createDate = #{createdate,jdbcType=DATE}, + + + profitFee = #{profitfee,jdbcType=DECIMAL}, + + + payUserCity = #{payusercity,jdbcType=VARCHAR}, + + + subject = #{subject,jdbcType=VARCHAR}, + + + mercOrderNo = #{mercorderno,jdbcType=VARCHAR}, + + + mercNotifyUrl = #{mercnotifyurl,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_jft_receipt_order + set rid = #{rid,jdbcType=INTEGER}, + amount = #{amount,jdbcType=DECIMAL}, + status = #{status,jdbcType=VARCHAR}, + payType = #{paytype,jdbcType=VARCHAR}, + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + userId = #{userid,jdbcType=INTEGER}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + payUserId = #{payuserid,jdbcType=VARCHAR}, + name = #{name,jdbcType=VARCHAR}, + phone = #{phone,jdbcType=VARCHAR}, + goods = #{goods,jdbcType=VARCHAR}, + address = #{address,jdbcType=VARCHAR}, + transNo = #{transno,jdbcType=VARCHAR}, + channelTransNo = #{channeltransno,jdbcType=VARCHAR}, + transTime = #{transtime,jdbcType=TIMESTAMP}, + rate = #{rate,jdbcType=INTEGER}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + channelFee = #{channelfee,jdbcType=DECIMAL}, + mercFee = #{mercfee,jdbcType=DECIMAL}, + cashFee = #{cashfee,jdbcType=DECIMAL}, + payData = #{paydata,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + createDate = #{createdate,jdbcType=DATE}, + profitFee = #{profitfee,jdbcType=DECIMAL}, + payUserCity = #{payusercity,jdbcType=VARCHAR}, + subject = #{subject,jdbcType=VARCHAR}, + mercOrderNo = #{mercorderno,jdbcType=VARCHAR}, + mercNotifyUrl = #{mercnotifyurl,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussJftReceiptPaymentMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussJftReceiptPaymentMapper.xml new file mode 100644 index 0000000..d448e53 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussJftReceiptPaymentMapper.xml @@ -0,0 +1,69 @@ + + + + + + + + + + id, rid, pid + + + + delete from tb_pluss_jft_receipt_payment + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_jft_receipt_payment (id, rid, pid) + values (#{id,jdbcType=INTEGER}, #{rid,jdbcType=INTEGER}, #{pid,jdbcType=INTEGER}) + + + insert into tb_pluss_jft_receipt_payment + + + id, + + + rid, + + + pid, + + + + + #{id,jdbcType=INTEGER}, + + + #{rid,jdbcType=INTEGER}, + + + #{pid,jdbcType=INTEGER}, + + + + + update tb_pluss_jft_receipt_payment + + + rid = #{rid,jdbcType=INTEGER}, + + + pid = #{pid,jdbcType=INTEGER}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_jft_receipt_payment + set rid = #{rid,jdbcType=INTEGER}, + pid = #{pid,jdbcType=INTEGER} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussJftSmallClassMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussJftSmallClassMapper.xml new file mode 100644 index 0000000..d379cd8 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussJftSmallClassMapper.xml @@ -0,0 +1,157 @@ + + + + + + + + + + + + + + + + + + id, title, describe, photo, url, status, sort, createTime + + + content + + + + delete from tb_pluss_jft_small_class + where id = #{id,jdbcType=TINYINT} + + + insert into tb_pluss_jft_small_class (id, title, describe, + photo, url, status, sort, + createTime, content) + values (#{id,jdbcType=TINYINT}, #{title,jdbcType=VARCHAR}, #{describe,jdbcType=VARCHAR}, + #{photo,jdbcType=VARCHAR}, #{url,jdbcType=VARCHAR}, #{status,jdbcType=BIT}, #{sort,jdbcType=TINYINT}, + #{createtime,jdbcType=TIMESTAMP}, #{content,jdbcType=LONGVARCHAR}) + + + insert into tb_pluss_jft_small_class + + + id, + + + title, + + + describe, + + + photo, + + + url, + + + status, + + + sort, + + + createTime, + + + content, + + + + + #{id,jdbcType=TINYINT}, + + + #{title,jdbcType=VARCHAR}, + + + #{describe,jdbcType=VARCHAR}, + + + #{photo,jdbcType=VARCHAR}, + + + #{url,jdbcType=VARCHAR}, + + + #{status,jdbcType=BIT}, + + + #{sort,jdbcType=TINYINT}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{content,jdbcType=LONGVARCHAR}, + + + + + update tb_pluss_jft_small_class + + + title = #{title,jdbcType=VARCHAR}, + + + describe = #{describe,jdbcType=VARCHAR}, + + + photo = #{photo,jdbcType=VARCHAR}, + + + url = #{url,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=BIT}, + + + sort = #{sort,jdbcType=TINYINT}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + content = #{content,jdbcType=LONGVARCHAR}, + + + where id = #{id,jdbcType=TINYINT} + + + update tb_pluss_jft_small_class + set title = #{title,jdbcType=VARCHAR}, + describe = #{describe,jdbcType=VARCHAR}, + photo = #{photo,jdbcType=VARCHAR}, + url = #{url,jdbcType=VARCHAR}, + status = #{status,jdbcType=BIT}, + sort = #{sort,jdbcType=TINYINT}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + content = #{content,jdbcType=LONGVARCHAR} + where id = #{id,jdbcType=TINYINT} + + + update tb_pluss_jft_small_class + set title = #{title,jdbcType=VARCHAR}, + describe = #{describe,jdbcType=VARCHAR}, + photo = #{photo,jdbcType=VARCHAR}, + url = #{url,jdbcType=VARCHAR}, + status = #{status,jdbcType=BIT}, + sort = #{sort,jdbcType=TINYINT}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=TINYINT} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussLeshuaMakeMoneyMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussLeshuaMakeMoneyMapper.xml new file mode 100644 index 0000000..64db88a --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussLeshuaMakeMoneyMapper.xml @@ -0,0 +1,235 @@ + + + + + + + + + + + + + + + + + + + + + + + + id, billId, createTime, merchantId, planAmount, suspendAmount, realAmount, state, + failReason, remark, recreateFlag, settType, settDate, tag, bankretTime, bankAccount, + bankHolder + + + + delete from tb_pluss_leshua_make_money + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_leshua_make_money (id, billId, createTime, + merchantId, planAmount, suspendAmount, + realAmount, state, failReason, + remark, recreateFlag, settType, + settDate, tag, bankretTime, + bankAccount, bankHolder) + values (#{id,jdbcType=INTEGER}, #{billid,jdbcType=VARCHAR}, #{createtime,jdbcType=VARCHAR}, + #{merchantid,jdbcType=VARCHAR}, #{planamount,jdbcType=DOUBLE}, #{suspendamount,jdbcType=DOUBLE}, + #{realamount,jdbcType=DOUBLE}, #{state,jdbcType=VARCHAR}, #{failreason,jdbcType=VARCHAR}, + #{remark,jdbcType=VARCHAR}, #{recreateflag,jdbcType=VARCHAR}, #{setttype,jdbcType=VARCHAR}, + #{settdate,jdbcType=VARCHAR}, #{tag,jdbcType=VARCHAR}, #{bankrettime,jdbcType=VARCHAR}, + #{bankaccount,jdbcType=VARCHAR}, #{bankholder,jdbcType=VARCHAR}) + + + insert into tb_pluss_leshua_make_money + + + id, + + + billId, + + + createTime, + + + merchantId, + + + planAmount, + + + suspendAmount, + + + realAmount, + + + state, + + + failReason, + + + remark, + + + recreateFlag, + + + settType, + + + settDate, + + + tag, + + + bankretTime, + + + bankAccount, + + + bankHolder, + + + + + #{id,jdbcType=INTEGER}, + + + #{billid,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=VARCHAR}, + + + #{merchantid,jdbcType=VARCHAR}, + + + #{planamount,jdbcType=DOUBLE}, + + + #{suspendamount,jdbcType=DOUBLE}, + + + #{realamount,jdbcType=DOUBLE}, + + + #{state,jdbcType=VARCHAR}, + + + #{failreason,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{recreateflag,jdbcType=VARCHAR}, + + + #{setttype,jdbcType=VARCHAR}, + + + #{settdate,jdbcType=VARCHAR}, + + + #{tag,jdbcType=VARCHAR}, + + + #{bankrettime,jdbcType=VARCHAR}, + + + #{bankaccount,jdbcType=VARCHAR}, + + + #{bankholder,jdbcType=VARCHAR}, + + + + + update tb_pluss_leshua_make_money + + + billId = #{billid,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=VARCHAR}, + + + merchantId = #{merchantid,jdbcType=VARCHAR}, + + + planAmount = #{planamount,jdbcType=DOUBLE}, + + + suspendAmount = #{suspendamount,jdbcType=DOUBLE}, + + + realAmount = #{realamount,jdbcType=DOUBLE}, + + + state = #{state,jdbcType=VARCHAR}, + + + failReason = #{failreason,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + recreateFlag = #{recreateflag,jdbcType=VARCHAR}, + + + settType = #{setttype,jdbcType=VARCHAR}, + + + settDate = #{settdate,jdbcType=VARCHAR}, + + + tag = #{tag,jdbcType=VARCHAR}, + + + bankretTime = #{bankrettime,jdbcType=VARCHAR}, + + + bankAccount = #{bankaccount,jdbcType=VARCHAR}, + + + bankHolder = #{bankholder,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_leshua_make_money + set billId = #{billid,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=VARCHAR}, + merchantId = #{merchantid,jdbcType=VARCHAR}, + planAmount = #{planamount,jdbcType=DOUBLE}, + suspendAmount = #{suspendamount,jdbcType=DOUBLE}, + realAmount = #{realamount,jdbcType=DOUBLE}, + state = #{state,jdbcType=VARCHAR}, + failReason = #{failreason,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + recreateFlag = #{recreateflag,jdbcType=VARCHAR}, + settType = #{setttype,jdbcType=VARCHAR}, + settDate = #{settdate,jdbcType=VARCHAR}, + tag = #{tag,jdbcType=VARCHAR}, + bankretTime = #{bankrettime,jdbcType=VARCHAR}, + bankAccount = #{bankaccount,jdbcType=VARCHAR}, + bankHolder = #{bankholder,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussLevelMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussLevelMapper.xml new file mode 100644 index 0000000..129c535 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussLevelMapper.xml @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + id, level, tradeMoney, authCount, levelName, rate, createDt, logo + + + + delete from tb_pluss_level + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_level (id, level, tradeMoney, + authCount, levelName, rate, + createDt, logo) + values (#{id,jdbcType=INTEGER}, #{level,jdbcType=INTEGER}, #{trademoney,jdbcType=DOUBLE}, + #{authcount,jdbcType=INTEGER}, #{levelname,jdbcType=VARCHAR}, #{rate,jdbcType=DOUBLE}, + #{createdt,jdbcType=TIMESTAMP}, #{logo,jdbcType=VARCHAR}) + + + insert into tb_pluss_level + + + id, + + + level, + + + tradeMoney, + + + authCount, + + + levelName, + + + rate, + + + createDt, + + + logo, + + + + + #{id,jdbcType=INTEGER}, + + + #{level,jdbcType=INTEGER}, + + + #{trademoney,jdbcType=DOUBLE}, + + + #{authcount,jdbcType=INTEGER}, + + + #{levelname,jdbcType=VARCHAR}, + + + #{rate,jdbcType=DOUBLE}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{logo,jdbcType=VARCHAR}, + + + + + update tb_pluss_level + + + level = #{level,jdbcType=INTEGER}, + + + tradeMoney = #{trademoney,jdbcType=DOUBLE}, + + + authCount = #{authcount,jdbcType=INTEGER}, + + + levelName = #{levelname,jdbcType=VARCHAR}, + + + rate = #{rate,jdbcType=DOUBLE}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + logo = #{logo,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_level + set level = #{level,jdbcType=INTEGER}, + tradeMoney = #{trademoney,jdbcType=DOUBLE}, + authCount = #{authcount,jdbcType=INTEGER}, + levelName = #{levelname,jdbcType=VARCHAR}, + rate = #{rate,jdbcType=DOUBLE}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + logo = #{logo,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussLevelOperateRecordMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussLevelOperateRecordMapper.xml new file mode 100644 index 0000000..d4c7070 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussLevelOperateRecordMapper.xml @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + id, userId, operator, levelCode, createTime, updateTime, createMonth, flag + + + + delete from tb_pluss_level_operate_record + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_level_operate_record (id, userId, operator, + levelCode, createTime, updateTime, + createMonth, flag) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{operator,jdbcType=INTEGER}, + #{levelcode,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}, + #{createmonth,jdbcType=VARCHAR}, #{flag,jdbcType=VARCHAR}) + + + insert into tb_pluss_level_operate_record + + + id, + + + userId, + + + operator, + + + levelCode, + + + createTime, + + + updateTime, + + + createMonth, + + + flag, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{operator,jdbcType=INTEGER}, + + + #{levelcode,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{createmonth,jdbcType=VARCHAR}, + + + #{flag,jdbcType=VARCHAR}, + + + + + update tb_pluss_level_operate_record + + + userId = #{userid,jdbcType=INTEGER}, + + + operator = #{operator,jdbcType=INTEGER}, + + + levelCode = #{levelcode,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + createMonth = #{createmonth,jdbcType=VARCHAR}, + + + flag = #{flag,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_level_operate_record + set userId = #{userid,jdbcType=INTEGER}, + operator = #{operator,jdbcType=INTEGER}, + levelCode = #{levelcode,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + createMonth = #{createmonth,jdbcType=VARCHAR}, + flag = #{flag,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMakeMoneyMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMakeMoneyMapper.xml new file mode 100644 index 0000000..b22d295 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMakeMoneyMapper.xml @@ -0,0 +1,283 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, billId, createTime, merchantId, planAmount, suspendAmount, realAmount, state, + failReason, remark, recreateFlag, settType, settDate, tag, bankretTime, bankAccount, + bankHolder, channelId, thirdStatus, recordCreateTime, recordUpdateTime + + + + delete from tb_pluss_make_money + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_make_money (id, billId, createTime, + merchantId, planAmount, suspendAmount, + realAmount, state, failReason, + remark, recreateFlag, settType, + settDate, tag, bankretTime, + bankAccount, bankHolder, channelId, + thirdStatus, recordCreateTime, recordUpdateTime + ) + values (#{id,jdbcType=INTEGER}, #{billid,jdbcType=VARCHAR}, #{createtime,jdbcType=VARCHAR}, + #{merchantid,jdbcType=VARCHAR}, #{planamount,jdbcType=DOUBLE}, #{suspendamount,jdbcType=DOUBLE}, + #{realamount,jdbcType=DOUBLE}, #{state,jdbcType=VARCHAR}, #{failreason,jdbcType=VARCHAR}, + #{remark,jdbcType=VARCHAR}, #{recreateflag,jdbcType=VARCHAR}, #{setttype,jdbcType=VARCHAR}, + #{settdate,jdbcType=VARCHAR}, #{tag,jdbcType=VARCHAR}, #{bankrettime,jdbcType=TIMESTAMP}, + #{bankaccount,jdbcType=VARCHAR}, #{bankholder,jdbcType=VARCHAR}, #{channelid,jdbcType=INTEGER}, + #{thirdstatus,jdbcType=VARCHAR}, #{recordcreatetime,jdbcType=TIMESTAMP}, #{recordupdatetime,jdbcType=TIMESTAMP} + ) + + + insert into tb_pluss_make_money + + + id, + + + billId, + + + createTime, + + + merchantId, + + + planAmount, + + + suspendAmount, + + + realAmount, + + + state, + + + failReason, + + + remark, + + + recreateFlag, + + + settType, + + + settDate, + + + tag, + + + bankretTime, + + + bankAccount, + + + bankHolder, + + + channelId, + + + thirdStatus, + + + recordCreateTime, + + + recordUpdateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{billid,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=VARCHAR}, + + + #{merchantid,jdbcType=VARCHAR}, + + + #{planamount,jdbcType=DOUBLE}, + + + #{suspendamount,jdbcType=DOUBLE}, + + + #{realamount,jdbcType=DOUBLE}, + + + #{state,jdbcType=VARCHAR}, + + + #{failreason,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{recreateflag,jdbcType=VARCHAR}, + + + #{setttype,jdbcType=VARCHAR}, + + + #{settdate,jdbcType=VARCHAR}, + + + #{tag,jdbcType=VARCHAR}, + + + #{bankrettime,jdbcType=TIMESTAMP}, + + + #{bankaccount,jdbcType=VARCHAR}, + + + #{bankholder,jdbcType=VARCHAR}, + + + #{channelid,jdbcType=INTEGER}, + + + #{thirdstatus,jdbcType=VARCHAR}, + + + #{recordcreatetime,jdbcType=TIMESTAMP}, + + + #{recordupdatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_make_money + + + billId = #{billid,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=VARCHAR}, + + + merchantId = #{merchantid,jdbcType=VARCHAR}, + + + planAmount = #{planamount,jdbcType=DOUBLE}, + + + suspendAmount = #{suspendamount,jdbcType=DOUBLE}, + + + realAmount = #{realamount,jdbcType=DOUBLE}, + + + state = #{state,jdbcType=VARCHAR}, + + + failReason = #{failreason,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + recreateFlag = #{recreateflag,jdbcType=VARCHAR}, + + + settType = #{setttype,jdbcType=VARCHAR}, + + + settDate = #{settdate,jdbcType=VARCHAR}, + + + tag = #{tag,jdbcType=VARCHAR}, + + + bankretTime = #{bankrettime,jdbcType=TIMESTAMP}, + + + bankAccount = #{bankaccount,jdbcType=VARCHAR}, + + + bankHolder = #{bankholder,jdbcType=VARCHAR}, + + + channelId = #{channelid,jdbcType=INTEGER}, + + + thirdStatus = #{thirdstatus,jdbcType=VARCHAR}, + + + recordCreateTime = #{recordcreatetime,jdbcType=TIMESTAMP}, + + + recordUpdateTime = #{recordupdatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_make_money + set billId = #{billid,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=VARCHAR}, + merchantId = #{merchantid,jdbcType=VARCHAR}, + planAmount = #{planamount,jdbcType=DOUBLE}, + suspendAmount = #{suspendamount,jdbcType=DOUBLE}, + realAmount = #{realamount,jdbcType=DOUBLE}, + state = #{state,jdbcType=VARCHAR}, + failReason = #{failreason,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + recreateFlag = #{recreateflag,jdbcType=VARCHAR}, + settType = #{setttype,jdbcType=VARCHAR}, + settDate = #{settdate,jdbcType=VARCHAR}, + tag = #{tag,jdbcType=VARCHAR}, + bankretTime = #{bankrettime,jdbcType=TIMESTAMP}, + bankAccount = #{bankaccount,jdbcType=VARCHAR}, + bankHolder = #{bankholder,jdbcType=VARCHAR}, + channelId = #{channelid,jdbcType=INTEGER}, + thirdStatus = #{thirdstatus,jdbcType=VARCHAR}, + recordCreateTime = #{recordcreatetime,jdbcType=TIMESTAMP}, + recordUpdateTime = #{recordupdatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMccInfoMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMccInfoMapper.xml new file mode 100644 index 0000000..e47779f --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMccInfoMapper.xml @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + F_id, F_mcc_code, F_mcc_txt, F_father_code, F_grandpa_code, F_father_txt, F_grandpa_txt, + F_commission, F_max_commission_one_transaction, F_mcc_type, F_mcc_type_txt, F_daily_limit, + F_no_pin_flag + + + + delete from tb_pluss_mcc_info + where F_id = #{fId,jdbcType=INTEGER} + + + insert into tb_pluss_mcc_info (F_id, F_mcc_code, F_mcc_txt, + F_father_code, F_grandpa_code, F_father_txt, + F_grandpa_txt, F_commission, F_max_commission_one_transaction, + F_mcc_type, F_mcc_type_txt, F_daily_limit, + F_no_pin_flag) + values (#{fId,jdbcType=INTEGER}, #{fMccCode,jdbcType=VARCHAR}, #{fMccTxt,jdbcType=VARCHAR}, + #{fFatherCode,jdbcType=VARCHAR}, #{fGrandpaCode,jdbcType=VARCHAR}, #{fFatherTxt,jdbcType=VARCHAR}, + #{fGrandpaTxt,jdbcType=VARCHAR}, #{fCommission,jdbcType=INTEGER}, #{fMaxCommissionOneTransaction,jdbcType=INTEGER}, + #{fMccType,jdbcType=TINYINT}, #{fMccTypeTxt,jdbcType=VARCHAR}, #{fDailyLimit,jdbcType=INTEGER}, + #{fNoPinFlag,jdbcType=INTEGER}) + + + insert into tb_pluss_mcc_info + + + F_id, + + + F_mcc_code, + + + F_mcc_txt, + + + F_father_code, + + + F_grandpa_code, + + + F_father_txt, + + + F_grandpa_txt, + + + F_commission, + + + F_max_commission_one_transaction, + + + F_mcc_type, + + + F_mcc_type_txt, + + + F_daily_limit, + + + F_no_pin_flag, + + + + + #{fId,jdbcType=INTEGER}, + + + #{fMccCode,jdbcType=VARCHAR}, + + + #{fMccTxt,jdbcType=VARCHAR}, + + + #{fFatherCode,jdbcType=VARCHAR}, + + + #{fGrandpaCode,jdbcType=VARCHAR}, + + + #{fFatherTxt,jdbcType=VARCHAR}, + + + #{fGrandpaTxt,jdbcType=VARCHAR}, + + + #{fCommission,jdbcType=INTEGER}, + + + #{fMaxCommissionOneTransaction,jdbcType=INTEGER}, + + + #{fMccType,jdbcType=TINYINT}, + + + #{fMccTypeTxt,jdbcType=VARCHAR}, + + + #{fDailyLimit,jdbcType=INTEGER}, + + + #{fNoPinFlag,jdbcType=INTEGER}, + + + + + update tb_pluss_mcc_info + + + F_mcc_code = #{fMccCode,jdbcType=VARCHAR}, + + + F_mcc_txt = #{fMccTxt,jdbcType=VARCHAR}, + + + F_father_code = #{fFatherCode,jdbcType=VARCHAR}, + + + F_grandpa_code = #{fGrandpaCode,jdbcType=VARCHAR}, + + + F_father_txt = #{fFatherTxt,jdbcType=VARCHAR}, + + + F_grandpa_txt = #{fGrandpaTxt,jdbcType=VARCHAR}, + + + F_commission = #{fCommission,jdbcType=INTEGER}, + + + F_max_commission_one_transaction = #{fMaxCommissionOneTransaction,jdbcType=INTEGER}, + + + F_mcc_type = #{fMccType,jdbcType=TINYINT}, + + + F_mcc_type_txt = #{fMccTypeTxt,jdbcType=VARCHAR}, + + + F_daily_limit = #{fDailyLimit,jdbcType=INTEGER}, + + + F_no_pin_flag = #{fNoPinFlag,jdbcType=INTEGER}, + + + where F_id = #{fId,jdbcType=INTEGER} + + + update tb_pluss_mcc_info + set F_mcc_code = #{fMccCode,jdbcType=VARCHAR}, + F_mcc_txt = #{fMccTxt,jdbcType=VARCHAR}, + F_father_code = #{fFatherCode,jdbcType=VARCHAR}, + F_grandpa_code = #{fGrandpaCode,jdbcType=VARCHAR}, + F_father_txt = #{fFatherTxt,jdbcType=VARCHAR}, + F_grandpa_txt = #{fGrandpaTxt,jdbcType=VARCHAR}, + F_commission = #{fCommission,jdbcType=INTEGER}, + F_max_commission_one_transaction = #{fMaxCommissionOneTransaction,jdbcType=INTEGER}, + F_mcc_type = #{fMccType,jdbcType=TINYINT}, + F_mcc_type_txt = #{fMccTypeTxt,jdbcType=VARCHAR}, + F_daily_limit = #{fDailyLimit,jdbcType=INTEGER}, + F_no_pin_flag = #{fNoPinFlag,jdbcType=INTEGER} + where F_id = #{fId,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMccInfoRyxMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMccInfoRyxMapper.xml new file mode 100644 index 0000000..1b63136 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMccInfoRyxMapper.xml @@ -0,0 +1,63 @@ + + + + + + + + + + + + + insert into tb_pluss_mcc_info_ryx (type, mcc, bankTypeDesc, + bankDetailDesc, wxTypeId, mccDesc + ) + values (#{type,jdbcType=VARCHAR}, #{mcc,jdbcType=VARCHAR}, #{banktypedesc,jdbcType=VARCHAR}, + #{bankdetaildesc,jdbcType=VARCHAR}, #{wxtypeid,jdbcType=VARCHAR}, #{mccdesc,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_mcc_info_ryx + + + type, + + + mcc, + + + bankTypeDesc, + + + bankDetailDesc, + + + wxTypeId, + + + mccDesc, + + + + + #{type,jdbcType=VARCHAR}, + + + #{mcc,jdbcType=VARCHAR}, + + + #{banktypedesc,jdbcType=VARCHAR}, + + + #{bankdetaildesc,jdbcType=VARCHAR}, + + + #{wxtypeid,jdbcType=VARCHAR}, + + + #{mccdesc,jdbcType=VARCHAR}, + + + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMccInfoSortMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMccInfoSortMapper.xml new file mode 100644 index 0000000..cbac1c9 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMccInfoSortMapper.xml @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + id, code, mccCode, mccName, group, sort, createTime, updateTime + + + + delete from tb_pluss_mcc_info_sort + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_mcc_info_sort (id, code, mccCode, + mccName, group, sort, + createTime, updateTime) + values (#{id,jdbcType=INTEGER}, #{code,jdbcType=VARCHAR}, #{mcccode,jdbcType=VARCHAR}, + #{mccname,jdbcType=VARCHAR}, #{group,jdbcType=VARCHAR}, #{sort,jdbcType=INTEGER}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_mcc_info_sort + + + id, + + + code, + + + mccCode, + + + mccName, + + + group, + + + sort, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{code,jdbcType=VARCHAR}, + + + #{mcccode,jdbcType=VARCHAR}, + + + #{mccname,jdbcType=VARCHAR}, + + + #{group,jdbcType=VARCHAR}, + + + #{sort,jdbcType=INTEGER}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_mcc_info_sort + + + code = #{code,jdbcType=VARCHAR}, + + + mccCode = #{mcccode,jdbcType=VARCHAR}, + + + mccName = #{mccname,jdbcType=VARCHAR}, + + + group = #{group,jdbcType=VARCHAR}, + + + sort = #{sort,jdbcType=INTEGER}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_mcc_info_sort + set code = #{code,jdbcType=VARCHAR}, + mccCode = #{mcccode,jdbcType=VARCHAR}, + mccName = #{mccname,jdbcType=VARCHAR}, + group = #{group,jdbcType=VARCHAR}, + sort = #{sort,jdbcType=INTEGER}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMccInfoYsMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMccInfoYsMapper.xml new file mode 100644 index 0000000..c736f3c --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMccInfoYsMapper.xml @@ -0,0 +1,188 @@ + + + + + + + + + + + + + + + + + + + + id, mccCode, mccDesc, compan, individual, micro, type, mchType, mchTypeDesc, industry, + industryDesc, creator, createTime + + + + delete from tb_pluss_mcc_info_ys + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_mcc_info_ys (id, mccCode, mccDesc, + compan, individual, micro, + type, mchType, mchTypeDesc, + industry, industryDesc, creator, + createTime) + values (#{id,jdbcType=INTEGER}, #{mcccode,jdbcType=VARCHAR}, #{mccdesc,jdbcType=VARCHAR}, + #{compan,jdbcType=VARCHAR}, #{individual,jdbcType=VARCHAR}, #{micro,jdbcType=VARCHAR}, + #{type,jdbcType=VARCHAR}, #{mchtype,jdbcType=VARCHAR}, #{mchtypedesc,jdbcType=VARCHAR}, + #{industry,jdbcType=VARCHAR}, #{industrydesc,jdbcType=VARCHAR}, #{creator,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_mcc_info_ys + + + id, + + + mccCode, + + + mccDesc, + + + compan, + + + individual, + + + micro, + + + type, + + + mchType, + + + mchTypeDesc, + + + industry, + + + industryDesc, + + + creator, + + + createTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{mcccode,jdbcType=VARCHAR}, + + + #{mccdesc,jdbcType=VARCHAR}, + + + #{compan,jdbcType=VARCHAR}, + + + #{individual,jdbcType=VARCHAR}, + + + #{micro,jdbcType=VARCHAR}, + + + #{type,jdbcType=VARCHAR}, + + + #{mchtype,jdbcType=VARCHAR}, + + + #{mchtypedesc,jdbcType=VARCHAR}, + + + #{industry,jdbcType=VARCHAR}, + + + #{industrydesc,jdbcType=VARCHAR}, + + + #{creator,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_mcc_info_ys + + + mccCode = #{mcccode,jdbcType=VARCHAR}, + + + mccDesc = #{mccdesc,jdbcType=VARCHAR}, + + + compan = #{compan,jdbcType=VARCHAR}, + + + individual = #{individual,jdbcType=VARCHAR}, + + + micro = #{micro,jdbcType=VARCHAR}, + + + type = #{type,jdbcType=VARCHAR}, + + + mchType = #{mchtype,jdbcType=VARCHAR}, + + + mchTypeDesc = #{mchtypedesc,jdbcType=VARCHAR}, + + + industry = #{industry,jdbcType=VARCHAR}, + + + industryDesc = #{industrydesc,jdbcType=VARCHAR}, + + + creator = #{creator,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_mcc_info_ys + set mccCode = #{mcccode,jdbcType=VARCHAR}, + mccDesc = #{mccdesc,jdbcType=VARCHAR}, + compan = #{compan,jdbcType=VARCHAR}, + individual = #{individual,jdbcType=VARCHAR}, + micro = #{micro,jdbcType=VARCHAR}, + type = #{type,jdbcType=VARCHAR}, + mchType = #{mchtype,jdbcType=VARCHAR}, + mchTypeDesc = #{mchtypedesc,jdbcType=VARCHAR}, + industry = #{industry,jdbcType=VARCHAR}, + industryDesc = #{industrydesc,jdbcType=VARCHAR}, + creator = #{creator,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMccReflectMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMccReflectMapper.xml new file mode 100644 index 0000000..a8900c1 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMccReflectMapper.xml @@ -0,0 +1,106 @@ + + + + + + + + + + + + + id, standard_mcc_code, mcc_code, channel_id, create_time, update_time + + + + delete from tb_pluss_mcc_reflect + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_mcc_reflect (id, standard_mcc_code, mcc_code, + channel_id, create_time, update_time + ) + values (#{id,jdbcType=INTEGER}, #{standardMccCode,jdbcType=VARCHAR}, #{mccCode,jdbcType=VARCHAR}, + #{channelId,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP} + ) + + + insert into tb_pluss_mcc_reflect + + + id, + + + standard_mcc_code, + + + mcc_code, + + + channel_id, + + + create_time, + + + update_time, + + + + + #{id,jdbcType=INTEGER}, + + + #{standardMccCode,jdbcType=VARCHAR}, + + + #{mccCode,jdbcType=VARCHAR}, + + + #{channelId,jdbcType=INTEGER}, + + + #{createTime,jdbcType=TIMESTAMP}, + + + #{updateTime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_mcc_reflect + + + standard_mcc_code = #{standardMccCode,jdbcType=VARCHAR}, + + + mcc_code = #{mccCode,jdbcType=VARCHAR}, + + + channel_id = #{channelId,jdbcType=INTEGER}, + + + create_time = #{createTime,jdbcType=TIMESTAMP}, + + + update_time = #{updateTime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_mcc_reflect + set standard_mcc_code = #{standardMccCode,jdbcType=VARCHAR}, + mcc_code = #{mccCode,jdbcType=VARCHAR}, + channel_id = #{channelId,jdbcType=INTEGER}, + create_time = #{createTime,jdbcType=TIMESTAMP}, + update_time = #{updateTime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMemberOrderMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMemberOrderMapper.xml new file mode 100644 index 0000000..f0273f6 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMemberOrderMapper.xml @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + id, merchantCode, merchantName, storeId, storeName, orderNumber, memberCode, nickName, + createDt, orderType, orderFee, orderStatus, rechargeType, staffCode, staffName, leshuaTransNo, + weChatTransNo, aliPayTransNo, remark, channelNo + + + + delete from tb_pluss_member_order + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_member_order (id, merchantCode, merchantName, + storeId, storeName, orderNumber, + memberCode, nickName, createDt, + orderType, orderFee, orderStatus, + rechargeType, staffCode, staffName, + leshuaTransNo, weChatTransNo, aliPayTransNo, + remark, channelNo) + values (#{id,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, #{merchantname,jdbcType=VARCHAR}, + #{storeid,jdbcType=VARCHAR}, #{storename,jdbcType=VARCHAR}, #{ordernumber,jdbcType=VARCHAR}, + #{membercode,jdbcType=VARCHAR}, #{nickname,jdbcType=VARCHAR}, #{createdt,jdbcType=TIMESTAMP}, + #{ordertype,jdbcType=VARCHAR}, #{orderfee,jdbcType=VARCHAR}, #{orderstatus,jdbcType=VARCHAR}, + #{rechargetype,jdbcType=VARCHAR}, #{staffcode,jdbcType=VARCHAR}, #{staffname,jdbcType=VARCHAR}, + #{leshuatransno,jdbcType=VARCHAR}, #{wechattransno,jdbcType=VARCHAR}, #{alipaytransno,jdbcType=VARCHAR}, + #{remark,jdbcType=VARCHAR}, #{channelno,jdbcType=VARCHAR}) + + + insert into tb_pluss_member_order + + + id, + + + merchantCode, + + + merchantName, + + + storeId, + + + storeName, + + + orderNumber, + + + memberCode, + + + nickName, + + + createDt, + + + orderType, + + + orderFee, + + + orderStatus, + + + rechargeType, + + + staffCode, + + + staffName, + + + leshuaTransNo, + + + weChatTransNo, + + + aliPayTransNo, + + + remark, + + + channelNo, + + + + + #{id,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{storeid,jdbcType=VARCHAR}, + + + #{storename,jdbcType=VARCHAR}, + + + #{ordernumber,jdbcType=VARCHAR}, + + + #{membercode,jdbcType=VARCHAR}, + + + #{nickname,jdbcType=VARCHAR}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{ordertype,jdbcType=VARCHAR}, + + + #{orderfee,jdbcType=VARCHAR}, + + + #{orderstatus,jdbcType=VARCHAR}, + + + #{rechargetype,jdbcType=VARCHAR}, + + + #{staffcode,jdbcType=VARCHAR}, + + + #{staffname,jdbcType=VARCHAR}, + + + #{leshuatransno,jdbcType=VARCHAR}, + + + #{wechattransno,jdbcType=VARCHAR}, + + + #{alipaytransno,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{channelno,jdbcType=VARCHAR}, + + + + + update tb_pluss_member_order + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + storeId = #{storeid,jdbcType=VARCHAR}, + + + storeName = #{storename,jdbcType=VARCHAR}, + + + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + + + memberCode = #{membercode,jdbcType=VARCHAR}, + + + nickName = #{nickname,jdbcType=VARCHAR}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + orderType = #{ordertype,jdbcType=VARCHAR}, + + + orderFee = #{orderfee,jdbcType=VARCHAR}, + + + orderStatus = #{orderstatus,jdbcType=VARCHAR}, + + + rechargeType = #{rechargetype,jdbcType=VARCHAR}, + + + staffCode = #{staffcode,jdbcType=VARCHAR}, + + + staffName = #{staffname,jdbcType=VARCHAR}, + + + leshuaTransNo = #{leshuatransno,jdbcType=VARCHAR}, + + + weChatTransNo = #{wechattransno,jdbcType=VARCHAR}, + + + aliPayTransNo = #{alipaytransno,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + channelNo = #{channelno,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_member_order + set merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + storeId = #{storeid,jdbcType=VARCHAR}, + storeName = #{storename,jdbcType=VARCHAR}, + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + memberCode = #{membercode,jdbcType=VARCHAR}, + nickName = #{nickname,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + orderType = #{ordertype,jdbcType=VARCHAR}, + orderFee = #{orderfee,jdbcType=VARCHAR}, + orderStatus = #{orderstatus,jdbcType=VARCHAR}, + rechargeType = #{rechargetype,jdbcType=VARCHAR}, + staffCode = #{staffcode,jdbcType=VARCHAR}, + staffName = #{staffname,jdbcType=VARCHAR}, + leshuaTransNo = #{leshuatransno,jdbcType=VARCHAR}, + weChatTransNo = #{wechattransno,jdbcType=VARCHAR}, + aliPayTransNo = #{alipaytransno,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + channelNo = #{channelno,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMemberSettingMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMemberSettingMapper.xml new file mode 100644 index 0000000..8512cbe --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMemberSettingMapper.xml @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + id, merchantCode, merchantName, storeId, storeName, servicePhone, cardNum, cardContent, + createDt, payDt, staffName + + + + delete from tb_pluss_member_setting + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_member_setting (id, merchantCode, merchantName, + storeId, storeName, servicePhone, + cardNum, cardContent, createDt, + payDt, staffName) + values (#{id,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, #{merchantname,jdbcType=VARCHAR}, + #{storeid,jdbcType=VARCHAR}, #{storename,jdbcType=VARCHAR}, #{servicephone,jdbcType=VARCHAR}, + #{cardnum,jdbcType=VARCHAR}, #{cardcontent,jdbcType=VARCHAR}, #{createdt,jdbcType=TIMESTAMP}, + #{paydt,jdbcType=TIMESTAMP}, #{staffname,jdbcType=VARCHAR}) + + + insert into tb_pluss_member_setting + + + id, + + + merchantCode, + + + merchantName, + + + storeId, + + + storeName, + + + servicePhone, + + + cardNum, + + + cardContent, + + + createDt, + + + payDt, + + + staffName, + + + + + #{id,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{storeid,jdbcType=VARCHAR}, + + + #{storename,jdbcType=VARCHAR}, + + + #{servicephone,jdbcType=VARCHAR}, + + + #{cardnum,jdbcType=VARCHAR}, + + + #{cardcontent,jdbcType=VARCHAR}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{paydt,jdbcType=TIMESTAMP}, + + + #{staffname,jdbcType=VARCHAR}, + + + + + update tb_pluss_member_setting + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + storeId = #{storeid,jdbcType=VARCHAR}, + + + storeName = #{storename,jdbcType=VARCHAR}, + + + servicePhone = #{servicephone,jdbcType=VARCHAR}, + + + cardNum = #{cardnum,jdbcType=VARCHAR}, + + + cardContent = #{cardcontent,jdbcType=VARCHAR}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + payDt = #{paydt,jdbcType=TIMESTAMP}, + + + staffName = #{staffname,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_member_setting + set merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + storeId = #{storeid,jdbcType=VARCHAR}, + storeName = #{storename,jdbcType=VARCHAR}, + servicePhone = #{servicephone,jdbcType=VARCHAR}, + cardNum = #{cardnum,jdbcType=VARCHAR}, + cardContent = #{cardcontent,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + payDt = #{paydt,jdbcType=TIMESTAMP}, + staffName = #{staffname,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMemberTransStatisticsMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMemberTransStatisticsMapper.xml new file mode 100644 index 0000000..92d1cdb --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMemberTransStatisticsMapper.xml @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + id, userId, startDate, endDate, type, rechargeAmount, consumeAmount, giveAmount, + remark, createTime, updateTime + + + + delete from tb_pluss_member_trans_statistics + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_member_trans_statistics (id, userId, startDate, + endDate, type, rechargeAmount, + consumeAmount, giveAmount, remark, + createTime, updateTime) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{startdate,jdbcType=DATE}, + #{enddate,jdbcType=DATE}, #{type,jdbcType=VARCHAR}, #{rechargeamount,jdbcType=DECIMAL}, + #{consumeamount,jdbcType=DECIMAL}, #{giveamount,jdbcType=DECIMAL}, #{remark,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_member_trans_statistics + + + id, + + + userId, + + + startDate, + + + endDate, + + + type, + + + rechargeAmount, + + + consumeAmount, + + + giveAmount, + + + remark, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{startdate,jdbcType=DATE}, + + + #{enddate,jdbcType=DATE}, + + + #{type,jdbcType=VARCHAR}, + + + #{rechargeamount,jdbcType=DECIMAL}, + + + #{consumeamount,jdbcType=DECIMAL}, + + + #{giveamount,jdbcType=DECIMAL}, + + + #{remark,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_member_trans_statistics + + + userId = #{userid,jdbcType=INTEGER}, + + + startDate = #{startdate,jdbcType=DATE}, + + + endDate = #{enddate,jdbcType=DATE}, + + + type = #{type,jdbcType=VARCHAR}, + + + rechargeAmount = #{rechargeamount,jdbcType=DECIMAL}, + + + consumeAmount = #{consumeamount,jdbcType=DECIMAL}, + + + giveAmount = #{giveamount,jdbcType=DECIMAL}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_member_trans_statistics + set userId = #{userid,jdbcType=INTEGER}, + startDate = #{startdate,jdbcType=DATE}, + endDate = #{enddate,jdbcType=DATE}, + type = #{type,jdbcType=VARCHAR}, + rechargeAmount = #{rechargeamount,jdbcType=DECIMAL}, + consumeAmount = #{consumeamount,jdbcType=DECIMAL}, + giveAmount = #{giveamount,jdbcType=DECIMAL}, + remark = #{remark,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMenuInfoMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMenuInfoMapper.xml new file mode 100644 index 0000000..675a18f --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMenuInfoMapper.xml @@ -0,0 +1,221 @@ + + + + + + + + + + + + + + + + + + + + + + + id, name, menuType, parentId, menuOrder, visible, creator, version, description, + seq, pid, sort + + + link, iconUrl + + + + delete from tb_pluss_menu_info + where id = #{id,jdbcType=BIGINT} + + + insert into tb_pluss_menu_info (id, name, menuType, + parentId, menuOrder, visible, + creator, version, description, + seq, pid, sort, link, + iconUrl) + values (#{id,jdbcType=BIGINT}, #{name,jdbcType=VARCHAR}, #{menutype,jdbcType=INTEGER}, + #{parentid,jdbcType=BIGINT}, #{menuorder,jdbcType=INTEGER}, #{visible,jdbcType=BIT}, + #{creator,jdbcType=VARCHAR}, #{version,jdbcType=VARCHAR}, #{description,jdbcType=VARCHAR}, + #{seq,jdbcType=INTEGER}, #{pid,jdbcType=BIGINT}, #{sort,jdbcType=INTEGER}, #{link,jdbcType=LONGVARCHAR}, + #{iconurl,jdbcType=LONGVARCHAR}) + + + insert into tb_pluss_menu_info + + + id, + + + name, + + + menuType, + + + parentId, + + + menuOrder, + + + visible, + + + creator, + + + version, + + + description, + + + seq, + + + pid, + + + sort, + + + link, + + + iconUrl, + + + + + #{id,jdbcType=BIGINT}, + + + #{name,jdbcType=VARCHAR}, + + + #{menutype,jdbcType=INTEGER}, + + + #{parentid,jdbcType=BIGINT}, + + + #{menuorder,jdbcType=INTEGER}, + + + #{visible,jdbcType=BIT}, + + + #{creator,jdbcType=VARCHAR}, + + + #{version,jdbcType=VARCHAR}, + + + #{description,jdbcType=VARCHAR}, + + + #{seq,jdbcType=INTEGER}, + + + #{pid,jdbcType=BIGINT}, + + + #{sort,jdbcType=INTEGER}, + + + #{link,jdbcType=LONGVARCHAR}, + + + #{iconurl,jdbcType=LONGVARCHAR}, + + + + + update tb_pluss_menu_info + + + name = #{name,jdbcType=VARCHAR}, + + + menuType = #{menutype,jdbcType=INTEGER}, + + + parentId = #{parentid,jdbcType=BIGINT}, + + + menuOrder = #{menuorder,jdbcType=INTEGER}, + + + visible = #{visible,jdbcType=BIT}, + + + creator = #{creator,jdbcType=VARCHAR}, + + + version = #{version,jdbcType=VARCHAR}, + + + description = #{description,jdbcType=VARCHAR}, + + + seq = #{seq,jdbcType=INTEGER}, + + + pid = #{pid,jdbcType=BIGINT}, + + + sort = #{sort,jdbcType=INTEGER}, + + + link = #{link,jdbcType=LONGVARCHAR}, + + + iconUrl = #{iconurl,jdbcType=LONGVARCHAR}, + + + where id = #{id,jdbcType=BIGINT} + + + update tb_pluss_menu_info + set name = #{name,jdbcType=VARCHAR}, + menuType = #{menutype,jdbcType=INTEGER}, + parentId = #{parentid,jdbcType=BIGINT}, + menuOrder = #{menuorder,jdbcType=INTEGER}, + visible = #{visible,jdbcType=BIT}, + creator = #{creator,jdbcType=VARCHAR}, + version = #{version,jdbcType=VARCHAR}, + description = #{description,jdbcType=VARCHAR}, + seq = #{seq,jdbcType=INTEGER}, + pid = #{pid,jdbcType=BIGINT}, + sort = #{sort,jdbcType=INTEGER}, + link = #{link,jdbcType=LONGVARCHAR}, + iconUrl = #{iconurl,jdbcType=LONGVARCHAR} + where id = #{id,jdbcType=BIGINT} + + + update tb_pluss_menu_info + set name = #{name,jdbcType=VARCHAR}, + menuType = #{menutype,jdbcType=INTEGER}, + parentId = #{parentid,jdbcType=BIGINT}, + menuOrder = #{menuorder,jdbcType=INTEGER}, + visible = #{visible,jdbcType=BIT}, + creator = #{creator,jdbcType=VARCHAR}, + version = #{version,jdbcType=VARCHAR}, + description = #{description,jdbcType=VARCHAR}, + seq = #{seq,jdbcType=INTEGER}, + pid = #{pid,jdbcType=BIGINT}, + sort = #{sort,jdbcType=INTEGER} + where id = #{id,jdbcType=BIGINT} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMercDeviceRefundImageMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMercDeviceRefundImageMapper.xml new file mode 100644 index 0000000..1e906d1 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMercDeviceRefundImageMapper.xml @@ -0,0 +1,106 @@ + + + + + + + + + + + + + id, userId, picUrl, detailId, orderNo, createTime + + + + delete from tb_pluss_merc_device_refund_image + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merc_device_refund_image (id, userId, picUrl, + detailId, orderNo, createTime + ) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{picurl,jdbcType=VARCHAR}, + #{detailid,jdbcType=INTEGER}, #{orderno,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP} + ) + + + insert into tb_pluss_merc_device_refund_image + + + id, + + + userId, + + + picUrl, + + + detailId, + + + orderNo, + + + createTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{picurl,jdbcType=VARCHAR}, + + + #{detailid,jdbcType=INTEGER}, + + + #{orderno,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_merc_device_refund_image + + + userId = #{userid,jdbcType=INTEGER}, + + + picUrl = #{picurl,jdbcType=VARCHAR}, + + + detailId = #{detailid,jdbcType=INTEGER}, + + + orderNo = #{orderno,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merc_device_refund_image + set userId = #{userid,jdbcType=INTEGER}, + picUrl = #{picurl,jdbcType=VARCHAR}, + detailId = #{detailid,jdbcType=INTEGER}, + orderNo = #{orderno,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMercMemberSetMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMercMemberSetMapper.xml new file mode 100644 index 0000000..c0935eb --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMercMemberSetMapper.xml @@ -0,0 +1,106 @@ + + + + + + + + + + + + + id, userId, status, scope, createTime, updateTime + + + + delete from tb_pluss_merc_member_set + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merc_member_set (id, userId, status, + scope, createTime, updateTime + ) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{status,jdbcType=VARCHAR}, + #{scope,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP} + ) + + + insert into tb_pluss_merc_member_set + + + id, + + + userId, + + + status, + + + scope, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{status,jdbcType=VARCHAR}, + + + #{scope,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_merc_member_set + + + userId = #{userid,jdbcType=INTEGER}, + + + status = #{status,jdbcType=VARCHAR}, + + + scope = #{scope,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merc_member_set + set userId = #{userid,jdbcType=INTEGER}, + status = #{status,jdbcType=VARCHAR}, + scope = #{scope,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMercOrderDetailMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMercOrderDetailMapper.xml new file mode 100644 index 0000000..e595a43 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMercOrderDetailMapper.xml @@ -0,0 +1,316 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, shopTrolleyId, orderNo, code, name, desc, price, deviceLogo, type, num, userId, + logistNo, status, refundReason, rejectRemark, refundType, expressNo, refundExpressNo, + refundAmt, refundNo, refundTime, refundRemark, postage, createTime + + + + delete from tb_pluss_merc_order_detail + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merc_order_detail (id, shopTrolleyId, orderNo, + code, name, desc, price, + deviceLogo, type, num, + userId, logistNo, status, + refundReason, rejectRemark, refundType, + expressNo, refundExpressNo, refundAmt, + refundNo, refundTime, refundRemark, + postage, createTime) + values (#{id,jdbcType=INTEGER}, #{shoptrolleyid,jdbcType=INTEGER}, #{orderno,jdbcType=VARCHAR}, + #{code,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, #{desc,jdbcType=VARCHAR}, #{price,jdbcType=DECIMAL}, + #{devicelogo,jdbcType=VARCHAR}, #{type,jdbcType=VARCHAR}, #{num,jdbcType=INTEGER}, + #{userid,jdbcType=INTEGER}, #{logistno,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, + #{refundreason,jdbcType=VARCHAR}, #{rejectremark,jdbcType=VARCHAR}, #{refundtype,jdbcType=VARCHAR}, + #{expressno,jdbcType=VARCHAR}, #{refundexpressno,jdbcType=VARCHAR}, #{refundamt,jdbcType=DECIMAL}, + #{refundno,jdbcType=VARCHAR}, #{refundtime,jdbcType=TIMESTAMP}, #{refundremark,jdbcType=VARCHAR}, + #{postage,jdbcType=DECIMAL}, #{createtime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_merc_order_detail + + + id, + + + shopTrolleyId, + + + orderNo, + + + code, + + + name, + + + desc, + + + price, + + + deviceLogo, + + + type, + + + num, + + + userId, + + + logistNo, + + + status, + + + refundReason, + + + rejectRemark, + + + refundType, + + + expressNo, + + + refundExpressNo, + + + refundAmt, + + + refundNo, + + + refundTime, + + + refundRemark, + + + postage, + + + createTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{shoptrolleyid,jdbcType=INTEGER}, + + + #{orderno,jdbcType=VARCHAR}, + + + #{code,jdbcType=VARCHAR}, + + + #{name,jdbcType=VARCHAR}, + + + #{desc,jdbcType=VARCHAR}, + + + #{price,jdbcType=DECIMAL}, + + + #{devicelogo,jdbcType=VARCHAR}, + + + #{type,jdbcType=VARCHAR}, + + + #{num,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{logistno,jdbcType=VARCHAR}, + + + #{status,jdbcType=VARCHAR}, + + + #{refundreason,jdbcType=VARCHAR}, + + + #{rejectremark,jdbcType=VARCHAR}, + + + #{refundtype,jdbcType=VARCHAR}, + + + #{expressno,jdbcType=VARCHAR}, + + + #{refundexpressno,jdbcType=VARCHAR}, + + + #{refundamt,jdbcType=DECIMAL}, + + + #{refundno,jdbcType=VARCHAR}, + + + #{refundtime,jdbcType=TIMESTAMP}, + + + #{refundremark,jdbcType=VARCHAR}, + + + #{postage,jdbcType=DECIMAL}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_merc_order_detail + + + shopTrolleyId = #{shoptrolleyid,jdbcType=INTEGER}, + + + orderNo = #{orderno,jdbcType=VARCHAR}, + + + code = #{code,jdbcType=VARCHAR}, + + + name = #{name,jdbcType=VARCHAR}, + + + desc = #{desc,jdbcType=VARCHAR}, + + + price = #{price,jdbcType=DECIMAL}, + + + deviceLogo = #{devicelogo,jdbcType=VARCHAR}, + + + type = #{type,jdbcType=VARCHAR}, + + + num = #{num,jdbcType=INTEGER}, + + + userId = #{userid,jdbcType=INTEGER}, + + + logistNo = #{logistno,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=VARCHAR}, + + + refundReason = #{refundreason,jdbcType=VARCHAR}, + + + rejectRemark = #{rejectremark,jdbcType=VARCHAR}, + + + refundType = #{refundtype,jdbcType=VARCHAR}, + + + expressNo = #{expressno,jdbcType=VARCHAR}, + + + refundExpressNo = #{refundexpressno,jdbcType=VARCHAR}, + + + refundAmt = #{refundamt,jdbcType=DECIMAL}, + + + refundNo = #{refundno,jdbcType=VARCHAR}, + + + refundTime = #{refundtime,jdbcType=TIMESTAMP}, + + + refundRemark = #{refundremark,jdbcType=VARCHAR}, + + + postage = #{postage,jdbcType=DECIMAL}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merc_order_detail + set shopTrolleyId = #{shoptrolleyid,jdbcType=INTEGER}, + orderNo = #{orderno,jdbcType=VARCHAR}, + code = #{code,jdbcType=VARCHAR}, + name = #{name,jdbcType=VARCHAR}, + desc = #{desc,jdbcType=VARCHAR}, + price = #{price,jdbcType=DECIMAL}, + deviceLogo = #{devicelogo,jdbcType=VARCHAR}, + type = #{type,jdbcType=VARCHAR}, + num = #{num,jdbcType=INTEGER}, + userId = #{userid,jdbcType=INTEGER}, + logistNo = #{logistno,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + refundReason = #{refundreason,jdbcType=VARCHAR}, + rejectRemark = #{rejectremark,jdbcType=VARCHAR}, + refundType = #{refundtype,jdbcType=VARCHAR}, + expressNo = #{expressno,jdbcType=VARCHAR}, + refundExpressNo = #{refundexpressno,jdbcType=VARCHAR}, + refundAmt = #{refundamt,jdbcType=DECIMAL}, + refundNo = #{refundno,jdbcType=VARCHAR}, + refundTime = #{refundtime,jdbcType=TIMESTAMP}, + refundRemark = #{refundremark,jdbcType=VARCHAR}, + postage = #{postage,jdbcType=DECIMAL}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMercOrderExpressDetailMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMercOrderExpressDetailMapper.xml new file mode 100644 index 0000000..be02c9e --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMercOrderExpressDetailMapper.xml @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + id, orderNo, logisticProvider, expressNo, logistNo, city, district, acceptTime, remark, + empCode, empName, info, weight, contactInfo, questionCause, deliveryName, orgName, + orgCode, orgPhone, createTime + + + + delete from tb_pluss_merc_order_express_detail + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merc_order_express_detail (id, orderNo, logisticProvider, + expressNo, logistNo, city, + district, acceptTime, remark, + empCode, empName, info, + weight, contactInfo, questionCause, + deliveryName, orgName, orgCode, + orgPhone, createTime) + values (#{id,jdbcType=INTEGER}, #{orderno,jdbcType=VARCHAR}, #{logisticprovider,jdbcType=VARCHAR}, + #{expressno,jdbcType=VARCHAR}, #{logistno,jdbcType=VARCHAR}, #{city,jdbcType=VARCHAR}, + #{district,jdbcType=VARCHAR}, #{accepttime,jdbcType=TIMESTAMP}, #{remark,jdbcType=VARCHAR}, + #{empcode,jdbcType=VARCHAR}, #{empname,jdbcType=VARCHAR}, #{info,jdbcType=VARCHAR}, + #{weight,jdbcType=DECIMAL}, #{contactinfo,jdbcType=VARCHAR}, #{questioncause,jdbcType=VARCHAR}, + #{deliveryname,jdbcType=VARCHAR}, #{orgname,jdbcType=VARCHAR}, #{orgcode,jdbcType=VARCHAR}, + #{orgphone,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_merc_order_express_detail + + + id, + + + orderNo, + + + logisticProvider, + + + expressNo, + + + logistNo, + + + city, + + + district, + + + acceptTime, + + + remark, + + + empCode, + + + empName, + + + info, + + + weight, + + + contactInfo, + + + questionCause, + + + deliveryName, + + + orgName, + + + orgCode, + + + orgPhone, + + + createTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{orderno,jdbcType=VARCHAR}, + + + #{logisticprovider,jdbcType=VARCHAR}, + + + #{expressno,jdbcType=VARCHAR}, + + + #{logistno,jdbcType=VARCHAR}, + + + #{city,jdbcType=VARCHAR}, + + + #{district,jdbcType=VARCHAR}, + + + #{accepttime,jdbcType=TIMESTAMP}, + + + #{remark,jdbcType=VARCHAR}, + + + #{empcode,jdbcType=VARCHAR}, + + + #{empname,jdbcType=VARCHAR}, + + + #{info,jdbcType=VARCHAR}, + + + #{weight,jdbcType=DECIMAL}, + + + #{contactinfo,jdbcType=VARCHAR}, + + + #{questioncause,jdbcType=VARCHAR}, + + + #{deliveryname,jdbcType=VARCHAR}, + + + #{orgname,jdbcType=VARCHAR}, + + + #{orgcode,jdbcType=VARCHAR}, + + + #{orgphone,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_merc_order_express_detail + + + orderNo = #{orderno,jdbcType=VARCHAR}, + + + logisticProvider = #{logisticprovider,jdbcType=VARCHAR}, + + + expressNo = #{expressno,jdbcType=VARCHAR}, + + + logistNo = #{logistno,jdbcType=VARCHAR}, + + + city = #{city,jdbcType=VARCHAR}, + + + district = #{district,jdbcType=VARCHAR}, + + + acceptTime = #{accepttime,jdbcType=TIMESTAMP}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + empCode = #{empcode,jdbcType=VARCHAR}, + + + empName = #{empname,jdbcType=VARCHAR}, + + + info = #{info,jdbcType=VARCHAR}, + + + weight = #{weight,jdbcType=DECIMAL}, + + + contactInfo = #{contactinfo,jdbcType=VARCHAR}, + + + questionCause = #{questioncause,jdbcType=VARCHAR}, + + + deliveryName = #{deliveryname,jdbcType=VARCHAR}, + + + orgName = #{orgname,jdbcType=VARCHAR}, + + + orgCode = #{orgcode,jdbcType=VARCHAR}, + + + orgPhone = #{orgphone,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merc_order_express_detail + set orderNo = #{orderno,jdbcType=VARCHAR}, + logisticProvider = #{logisticprovider,jdbcType=VARCHAR}, + expressNo = #{expressno,jdbcType=VARCHAR}, + logistNo = #{logistno,jdbcType=VARCHAR}, + city = #{city,jdbcType=VARCHAR}, + district = #{district,jdbcType=VARCHAR}, + acceptTime = #{accepttime,jdbcType=TIMESTAMP}, + remark = #{remark,jdbcType=VARCHAR}, + empCode = #{empcode,jdbcType=VARCHAR}, + empName = #{empname,jdbcType=VARCHAR}, + info = #{info,jdbcType=VARCHAR}, + weight = #{weight,jdbcType=DECIMAL}, + contactInfo = #{contactinfo,jdbcType=VARCHAR}, + questionCause = #{questioncause,jdbcType=VARCHAR}, + deliveryName = #{deliveryname,jdbcType=VARCHAR}, + orgName = #{orgname,jdbcType=VARCHAR}, + orgCode = #{orgcode,jdbcType=VARCHAR}, + orgPhone = #{orgphone,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMercOrderExpressMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMercOrderExpressMapper.xml new file mode 100644 index 0000000..3e57846 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMercOrderExpressMapper.xml @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + id, logistNo, expressNo, type, status, createTime, updateTime, orderNo + + + + delete from tb_pluss_merc_order_express + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merc_order_express (id, logistNo, expressNo, + type, status, createTime, + updateTime, orderNo) + values (#{id,jdbcType=INTEGER}, #{logistno,jdbcType=VARCHAR}, #{expressno,jdbcType=VARCHAR}, + #{type,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, + #{updatetime,jdbcType=TIMESTAMP}, #{orderno,jdbcType=VARCHAR}) + + + insert into tb_pluss_merc_order_express + + + id, + + + logistNo, + + + expressNo, + + + type, + + + status, + + + createTime, + + + updateTime, + + + orderNo, + + + + + #{id,jdbcType=INTEGER}, + + + #{logistno,jdbcType=VARCHAR}, + + + #{expressno,jdbcType=VARCHAR}, + + + #{type,jdbcType=VARCHAR}, + + + #{status,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{orderno,jdbcType=VARCHAR}, + + + + + update tb_pluss_merc_order_express + + + logistNo = #{logistno,jdbcType=VARCHAR}, + + + expressNo = #{expressno,jdbcType=VARCHAR}, + + + type = #{type,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + orderNo = #{orderno,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merc_order_express + set logistNo = #{logistno,jdbcType=VARCHAR}, + expressNo = #{expressno,jdbcType=VARCHAR}, + type = #{type,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + orderNo = #{orderno,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMercOrderNewMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMercOrderNewMapper.xml new file mode 100644 index 0000000..6c18869 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMercOrderNewMapper.xml @@ -0,0 +1,411 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, orderNo, userId, transNo, thirdTransNo, receiver, phone, province, city, district, + address, remark, status, createTime, creator, updateTime, updater, payType, transDt, + orderAmt, discountAmt, actualAmt, postage, areaName, merchantCode, merchantName, + channel, payData, payUserId, refund_desc, refund_img, refund_time + + + + delete from tb_pluss_merc_order_new + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merc_order_new (id, orderNo, userId, + transNo, thirdTransNo, receiver, + phone, province, city, + district, address, remark, + status, createTime, creator, + updateTime, updater, payType, + transDt, orderAmt, discountAmt, + actualAmt, postage, areaName, + merchantCode, merchantName, channel, + payData, payUserId, refund_desc, + refund_img, refund_time) + values (#{id,jdbcType=INTEGER}, #{orderno,jdbcType=VARCHAR}, #{userid,jdbcType=INTEGER}, + #{transno,jdbcType=VARCHAR}, #{thirdtransno,jdbcType=VARCHAR}, #{receiver,jdbcType=VARCHAR}, + #{phone,jdbcType=VARCHAR}, #{province,jdbcType=VARCHAR}, #{city,jdbcType=VARCHAR}, + #{district,jdbcType=VARCHAR}, #{address,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR}, + #{status,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{creator,jdbcType=INTEGER}, + #{updatetime,jdbcType=TIMESTAMP}, #{updater,jdbcType=INTEGER}, #{paytype,jdbcType=VARCHAR}, + #{transdt,jdbcType=TIMESTAMP}, #{orderamt,jdbcType=DECIMAL}, #{discountamt,jdbcType=DECIMAL}, + #{actualamt,jdbcType=DECIMAL}, #{postage,jdbcType=DECIMAL}, #{areaname,jdbcType=VARCHAR}, + #{merchantcode,jdbcType=VARCHAR}, #{merchantname,jdbcType=VARCHAR}, #{channel,jdbcType=INTEGER}, + #{paydata,jdbcType=VARCHAR}, #{payuserid,jdbcType=VARCHAR}, #{refundDesc,jdbcType=VARCHAR}, + #{refundImg,jdbcType=VARCHAR}, #{refundTime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_merc_order_new + + + id, + + + orderNo, + + + userId, + + + transNo, + + + thirdTransNo, + + + receiver, + + + phone, + + + province, + + + city, + + + district, + + + address, + + + remark, + + + status, + + + createTime, + + + creator, + + + updateTime, + + + updater, + + + payType, + + + transDt, + + + orderAmt, + + + discountAmt, + + + actualAmt, + + + postage, + + + areaName, + + + merchantCode, + + + merchantName, + + + channel, + + + payData, + + + payUserId, + + + refund_desc, + + + refund_img, + + + refund_time, + + + + + #{id,jdbcType=INTEGER}, + + + #{orderno,jdbcType=VARCHAR}, + + + #{userid,jdbcType=INTEGER}, + + + #{transno,jdbcType=VARCHAR}, + + + #{thirdtransno,jdbcType=VARCHAR}, + + + #{receiver,jdbcType=VARCHAR}, + + + #{phone,jdbcType=VARCHAR}, + + + #{province,jdbcType=VARCHAR}, + + + #{city,jdbcType=VARCHAR}, + + + #{district,jdbcType=VARCHAR}, + + + #{address,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{status,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{creator,jdbcType=INTEGER}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{updater,jdbcType=INTEGER}, + + + #{paytype,jdbcType=VARCHAR}, + + + #{transdt,jdbcType=TIMESTAMP}, + + + #{orderamt,jdbcType=DECIMAL}, + + + #{discountamt,jdbcType=DECIMAL}, + + + #{actualamt,jdbcType=DECIMAL}, + + + #{postage,jdbcType=DECIMAL}, + + + #{areaname,jdbcType=VARCHAR}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{channel,jdbcType=INTEGER}, + + + #{paydata,jdbcType=VARCHAR}, + + + #{payuserid,jdbcType=VARCHAR}, + + + #{refundDesc,jdbcType=VARCHAR}, + + + #{refundImg,jdbcType=VARCHAR}, + + + #{refundTime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_merc_order_new + + + orderNo = #{orderno,jdbcType=VARCHAR}, + + + userId = #{userid,jdbcType=INTEGER}, + + + transNo = #{transno,jdbcType=VARCHAR}, + + + thirdTransNo = #{thirdtransno,jdbcType=VARCHAR}, + + + receiver = #{receiver,jdbcType=VARCHAR}, + + + phone = #{phone,jdbcType=VARCHAR}, + + + province = #{province,jdbcType=VARCHAR}, + + + city = #{city,jdbcType=VARCHAR}, + + + district = #{district,jdbcType=VARCHAR}, + + + address = #{address,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + creator = #{creator,jdbcType=INTEGER}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + updater = #{updater,jdbcType=INTEGER}, + + + payType = #{paytype,jdbcType=VARCHAR}, + + + transDt = #{transdt,jdbcType=TIMESTAMP}, + + + orderAmt = #{orderamt,jdbcType=DECIMAL}, + + + discountAmt = #{discountamt,jdbcType=DECIMAL}, + + + actualAmt = #{actualamt,jdbcType=DECIMAL}, + + + postage = #{postage,jdbcType=DECIMAL}, + + + areaName = #{areaname,jdbcType=VARCHAR}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + channel = #{channel,jdbcType=INTEGER}, + + + payData = #{paydata,jdbcType=VARCHAR}, + + + payUserId = #{payuserid,jdbcType=VARCHAR}, + + + refund_desc = #{refundDesc,jdbcType=VARCHAR}, + + + refund_img = #{refundImg,jdbcType=VARCHAR}, + + + refund_time = #{refundTime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merc_order_new + set orderNo = #{orderno,jdbcType=VARCHAR}, + userId = #{userid,jdbcType=INTEGER}, + transNo = #{transno,jdbcType=VARCHAR}, + thirdTransNo = #{thirdtransno,jdbcType=VARCHAR}, + receiver = #{receiver,jdbcType=VARCHAR}, + phone = #{phone,jdbcType=VARCHAR}, + province = #{province,jdbcType=VARCHAR}, + city = #{city,jdbcType=VARCHAR}, + district = #{district,jdbcType=VARCHAR}, + address = #{address,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + creator = #{creator,jdbcType=INTEGER}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + updater = #{updater,jdbcType=INTEGER}, + payType = #{paytype,jdbcType=VARCHAR}, + transDt = #{transdt,jdbcType=TIMESTAMP}, + orderAmt = #{orderamt,jdbcType=DECIMAL}, + discountAmt = #{discountamt,jdbcType=DECIMAL}, + actualAmt = #{actualamt,jdbcType=DECIMAL}, + postage = #{postage,jdbcType=DECIMAL}, + areaName = #{areaname,jdbcType=VARCHAR}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + channel = #{channel,jdbcType=INTEGER}, + payData = #{paydata,jdbcType=VARCHAR}, + payUserId = #{payuserid,jdbcType=VARCHAR}, + refund_desc = #{refundDesc,jdbcType=VARCHAR}, + refund_img = #{refundImg,jdbcType=VARCHAR}, + refund_time = #{refundTime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMercOrderTokenMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMercOrderTokenMapper.xml new file mode 100644 index 0000000..d0625d0 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMercOrderTokenMapper.xml @@ -0,0 +1,259 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + id, token, merchantName, merchantCode, userId, orderAmt, orderNumber, type, snNo, + createTime, expireTime, mercOrderNo, mercNotifyUrl, mercRefundUrl, subject, channel, + payTypeCode, payTypeName, alias + + + + delete from tb_pluss_merc_order_token + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merc_order_token (id, token, merchantName, + merchantCode, userId, orderAmt, + orderNumber, type, snNo, + createTime, expireTime, mercOrderNo, + mercNotifyUrl, mercRefundUrl, subject, + channel, payTypeCode, payTypeName, + alias) + values (#{id,jdbcType=INTEGER}, #{token,jdbcType=VARCHAR}, #{merchantname,jdbcType=VARCHAR}, + #{merchantcode,jdbcType=VARCHAR}, #{userid,jdbcType=INTEGER}, #{orderamt,jdbcType=DECIMAL}, + #{ordernumber,jdbcType=VARCHAR}, #{type,jdbcType=VARCHAR}, #{snno,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{expiretime,jdbcType=TIMESTAMP}, #{mercorderno,jdbcType=VARCHAR}, + #{mercnotifyurl,jdbcType=VARCHAR}, #{mercrefundurl,jdbcType=VARCHAR}, #{subject,jdbcType=VARCHAR}, + #{channel,jdbcType=INTEGER}, #{paytypecode,jdbcType=VARCHAR}, #{paytypename,jdbcType=VARCHAR}, + #{alias,jdbcType=VARCHAR}) + + + insert into tb_pluss_merc_order_token + + + id, + + + token, + + + merchantName, + + + merchantCode, + + + userId, + + + orderAmt, + + + orderNumber, + + + type, + + + snNo, + + + createTime, + + + expireTime, + + + mercOrderNo, + + + mercNotifyUrl, + + + mercRefundUrl, + + + subject, + + + channel, + + + payTypeCode, + + + payTypeName, + + + alias, + + + + + #{id,jdbcType=INTEGER}, + + + #{token,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{userid,jdbcType=INTEGER}, + + + #{orderamt,jdbcType=DECIMAL}, + + + #{ordernumber,jdbcType=VARCHAR}, + + + #{type,jdbcType=VARCHAR}, + + + #{snno,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{expiretime,jdbcType=TIMESTAMP}, + + + #{mercorderno,jdbcType=VARCHAR}, + + + #{mercnotifyurl,jdbcType=VARCHAR}, + + + #{mercrefundurl,jdbcType=VARCHAR}, + + + #{subject,jdbcType=VARCHAR}, + + + #{channel,jdbcType=INTEGER}, + + + #{paytypecode,jdbcType=VARCHAR}, + + + #{paytypename,jdbcType=VARCHAR}, + + + #{alias,jdbcType=VARCHAR}, + + + + + update tb_pluss_merc_order_token + + + token = #{token,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + userId = #{userid,jdbcType=INTEGER}, + + + orderAmt = #{orderamt,jdbcType=DECIMAL}, + + + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + + + type = #{type,jdbcType=VARCHAR}, + + + snNo = #{snno,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + expireTime = #{expiretime,jdbcType=TIMESTAMP}, + + + mercOrderNo = #{mercorderno,jdbcType=VARCHAR}, + + + mercNotifyUrl = #{mercnotifyurl,jdbcType=VARCHAR}, + + + mercRefundUrl = #{mercrefundurl,jdbcType=VARCHAR}, + + + subject = #{subject,jdbcType=VARCHAR}, + + + channel = #{channel,jdbcType=INTEGER}, + + + payTypeCode = #{paytypecode,jdbcType=VARCHAR}, + + + payTypeName = #{paytypename,jdbcType=VARCHAR}, + + + alias = #{alias,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merc_order_token + set token = #{token,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + userId = #{userid,jdbcType=INTEGER}, + orderAmt = #{orderamt,jdbcType=DECIMAL}, + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + type = #{type,jdbcType=VARCHAR}, + snNo = #{snno,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + expireTime = #{expiretime,jdbcType=TIMESTAMP}, + mercOrderNo = #{mercorderno,jdbcType=VARCHAR}, + mercNotifyUrl = #{mercnotifyurl,jdbcType=VARCHAR}, + mercRefundUrl = #{mercrefundurl,jdbcType=VARCHAR}, + subject = #{subject,jdbcType=VARCHAR}, + channel = #{channel,jdbcType=INTEGER}, + payTypeCode = #{paytypecode,jdbcType=VARCHAR}, + payTypeName = #{paytypename,jdbcType=VARCHAR}, + alias = #{alias,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMercShopTrolleyMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMercShopTrolleyMapper.xml new file mode 100644 index 0000000..f42cbac --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMercShopTrolleyMapper.xml @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + + id, code, name, deviceLogo, type, num, userId, createTime, updateTime, status + + + + delete from tb_pluss_merc_shop_trolley + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merc_shop_trolley (id, code, name, + deviceLogo, type, num, + userId, createTime, updateTime, + status) + values (#{id,jdbcType=INTEGER}, #{code,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, + #{devicelogo,jdbcType=VARCHAR}, #{type,jdbcType=VARCHAR}, #{num,jdbcType=INTEGER}, + #{userid,jdbcType=INTEGER}, #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}, + #{status,jdbcType=VARCHAR}) + + + insert into tb_pluss_merc_shop_trolley + + + id, + + + code, + + + name, + + + deviceLogo, + + + type, + + + num, + + + userId, + + + createTime, + + + updateTime, + + + status, + + + + + #{id,jdbcType=INTEGER}, + + + #{code,jdbcType=VARCHAR}, + + + #{name,jdbcType=VARCHAR}, + + + #{devicelogo,jdbcType=VARCHAR}, + + + #{type,jdbcType=VARCHAR}, + + + #{num,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{status,jdbcType=VARCHAR}, + + + + + update tb_pluss_merc_shop_trolley + + + code = #{code,jdbcType=VARCHAR}, + + + name = #{name,jdbcType=VARCHAR}, + + + deviceLogo = #{devicelogo,jdbcType=VARCHAR}, + + + type = #{type,jdbcType=VARCHAR}, + + + num = #{num,jdbcType=INTEGER}, + + + userId = #{userid,jdbcType=INTEGER}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + status = #{status,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merc_shop_trolley + set code = #{code,jdbcType=VARCHAR}, + name = #{name,jdbcType=VARCHAR}, + deviceLogo = #{devicelogo,jdbcType=VARCHAR}, + type = #{type,jdbcType=VARCHAR}, + num = #{num,jdbcType=INTEGER}, + userId = #{userid,jdbcType=INTEGER}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + status = #{status,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantAddressMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantAddressMapper.xml new file mode 100644 index 0000000..39c24ac --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantAddressMapper.xml @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + id, userId, merchantCode, provinces, address, linkPhone, linkName, isDefault, createDt + + + + delete from tb_pluss_merchant_address + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_address (id, userId, merchantCode, + provinces, address, linkPhone, + linkName, isDefault, createDt + ) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=VARCHAR}, #{merchantcode,jdbcType=VARCHAR}, + #{provinces,jdbcType=VARCHAR}, #{address,jdbcType=VARCHAR}, #{linkphone,jdbcType=VARCHAR}, + #{linkname,jdbcType=VARCHAR}, #{isdefault,jdbcType=VARCHAR}, #{createdt,jdbcType=TIMESTAMP} + ) + + + insert into tb_pluss_merchant_address + + + id, + + + userId, + + + merchantCode, + + + provinces, + + + address, + + + linkPhone, + + + linkName, + + + isDefault, + + + createDt, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=VARCHAR}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{provinces,jdbcType=VARCHAR}, + + + #{address,jdbcType=VARCHAR}, + + + #{linkphone,jdbcType=VARCHAR}, + + + #{linkname,jdbcType=VARCHAR}, + + + #{isdefault,jdbcType=VARCHAR}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_merchant_address + + + userId = #{userid,jdbcType=VARCHAR}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + provinces = #{provinces,jdbcType=VARCHAR}, + + + address = #{address,jdbcType=VARCHAR}, + + + linkPhone = #{linkphone,jdbcType=VARCHAR}, + + + linkName = #{linkname,jdbcType=VARCHAR}, + + + isDefault = #{isdefault,jdbcType=VARCHAR}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_address + set userId = #{userid,jdbcType=VARCHAR}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + provinces = #{provinces,jdbcType=VARCHAR}, + address = #{address,jdbcType=VARCHAR}, + linkPhone = #{linkphone,jdbcType=VARCHAR}, + linkName = #{linkname,jdbcType=VARCHAR}, + isDefault = #{isdefault,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantAuditRecordMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantAuditRecordMapper.xml new file mode 100644 index 0000000..95cc335 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantAuditRecordMapper.xml @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + id, merchantCode, merchantId, status, thirdStatus, remark, createTime, updateTime, + channel, applicationId + + + + delete from tb_pluss_merchant_audit_record + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_audit_record (id, merchantCode, merchantId, + status, thirdStatus, remark, + createTime, updateTime, channel, + applicationId) + values (#{id,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, #{merchantid,jdbcType=VARCHAR}, + #{status,jdbcType=VARCHAR}, #{thirdstatus,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}, #{channel,jdbcType=INTEGER}, + #{applicationid,jdbcType=VARCHAR}) + + + insert into tb_pluss_merchant_audit_record + + + id, + + + merchantCode, + + + merchantId, + + + status, + + + thirdStatus, + + + remark, + + + createTime, + + + updateTime, + + + channel, + + + applicationId, + + + + + #{id,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantid,jdbcType=VARCHAR}, + + + #{status,jdbcType=VARCHAR}, + + + #{thirdstatus,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{channel,jdbcType=INTEGER}, + + + #{applicationid,jdbcType=VARCHAR}, + + + + + update tb_pluss_merchant_audit_record + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantId = #{merchantid,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=VARCHAR}, + + + thirdStatus = #{thirdstatus,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + channel = #{channel,jdbcType=INTEGER}, + + + applicationId = #{applicationid,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_audit_record + set merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantId = #{merchantid,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + thirdStatus = #{thirdstatus,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + channel = #{channel,jdbcType=INTEGER}, + applicationId = #{applicationid,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantBackLklMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantBackLklMapper.xml new file mode 100644 index 0000000..3cb1d22 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantBackLklMapper.xml @@ -0,0 +1,199 @@ + + + + + + + + + + + + + + + + + + + + + id, merchant_code, merchant_id, channel, user_no, customer_no, external_customer_no, + term_nos, agency_no, active_no, contract_id, core_term_ids, create_time, update_time + + + + delete from tb_pluss_merchant_back_lkl + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_back_lkl (id, merchant_code, merchant_id, + channel, user_no, customer_no, + external_customer_no, term_nos, agency_no, + active_no, contract_id, core_term_ids, + create_time, update_time) + values (#{id,jdbcType=INTEGER}, #{merchantCode,jdbcType=VARCHAR}, #{merchantId,jdbcType=VARCHAR}, + #{channel,jdbcType=VARCHAR}, #{userNo,jdbcType=VARCHAR}, #{customerNo,jdbcType=VARCHAR}, + #{externalCustomerNo,jdbcType=VARCHAR}, #{termNos,jdbcType=VARCHAR}, #{agencyNo,jdbcType=VARCHAR}, + #{activeNo,jdbcType=VARCHAR}, #{contractId,jdbcType=VARCHAR}, #{coreTermIds,jdbcType=VARCHAR}, + #{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_merchant_back_lkl + + + id, + + + merchant_code, + + + merchant_id, + + + channel, + + + user_no, + + + customer_no, + + + external_customer_no, + + + term_nos, + + + agency_no, + + + active_no, + + + contract_id, + + + core_term_ids, + + + create_time, + + + update_time, + + + + + #{id,jdbcType=INTEGER}, + + + #{merchantCode,jdbcType=VARCHAR}, + + + #{merchantId,jdbcType=VARCHAR}, + + + #{channel,jdbcType=VARCHAR}, + + + #{userNo,jdbcType=VARCHAR}, + + + #{customerNo,jdbcType=VARCHAR}, + + + #{externalCustomerNo,jdbcType=VARCHAR}, + + + #{termNos,jdbcType=VARCHAR}, + + + #{agencyNo,jdbcType=VARCHAR}, + + + #{activeNo,jdbcType=VARCHAR}, + + + #{contractId,jdbcType=VARCHAR}, + + + #{coreTermIds,jdbcType=VARCHAR}, + + + #{createTime,jdbcType=TIMESTAMP}, + + + #{updateTime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_merchant_back_lkl + + + merchant_code = #{merchantCode,jdbcType=VARCHAR}, + + + merchant_id = #{merchantId,jdbcType=VARCHAR}, + + + channel = #{channel,jdbcType=VARCHAR}, + + + user_no = #{userNo,jdbcType=VARCHAR}, + + + customer_no = #{customerNo,jdbcType=VARCHAR}, + + + external_customer_no = #{externalCustomerNo,jdbcType=VARCHAR}, + + + term_nos = #{termNos,jdbcType=VARCHAR}, + + + agency_no = #{agencyNo,jdbcType=VARCHAR}, + + + active_no = #{activeNo,jdbcType=VARCHAR}, + + + contract_id = #{contractId,jdbcType=VARCHAR}, + + + core_term_ids = #{coreTermIds,jdbcType=VARCHAR}, + + + create_time = #{createTime,jdbcType=TIMESTAMP}, + + + update_time = #{updateTime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_back_lkl + set merchant_code = #{merchantCode,jdbcType=VARCHAR}, + merchant_id = #{merchantId,jdbcType=VARCHAR}, + channel = #{channel,jdbcType=VARCHAR}, + user_no = #{userNo,jdbcType=VARCHAR}, + customer_no = #{customerNo,jdbcType=VARCHAR}, + external_customer_no = #{externalCustomerNo,jdbcType=VARCHAR}, + term_nos = #{termNos,jdbcType=VARCHAR}, + agency_no = #{agencyNo,jdbcType=VARCHAR}, + active_no = #{activeNo,jdbcType=VARCHAR}, + contract_id = #{contractId,jdbcType=VARCHAR}, + core_term_ids = #{coreTermIds,jdbcType=VARCHAR}, + create_time = #{createTime,jdbcType=TIMESTAMP}, + update_time = #{updateTime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantBankCardMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantBankCardMapper.xml new file mode 100644 index 0000000..c749f62 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantBankCardMapper.xml @@ -0,0 +1,412 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, merchantCode, storeId, bankCardNo, bankAddressNo, bankCertName, bankName, branchName, + accountType, contactLine, branchProvince, branchCity, branchArea, certType, certNo, + certStartTime, certEndTime, cardHolderAddress, orderNo, merchantId, registerStatus, + failReason, accountNo, wechatChannelList, phone, createDt, updateDt, aisleSwitch, + certFullPhoto, certBacKPhoto, bankCardFrontPic, userId + + + + delete from tb_pluss_merchant_bank_card + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_bank_card (id, merchantCode, storeId, + bankCardNo, bankAddressNo, bankCertName, + bankName, branchName, accountType, + contactLine, branchProvince, branchCity, + branchArea, certType, certNo, + certStartTime, certEndTime, cardHolderAddress, + orderNo, merchantId, registerStatus, + failReason, accountNo, wechatChannelList, + phone, createDt, updateDt, + aisleSwitch, certFullPhoto, certBacKPhoto, + bankCardFrontPic, userId) + values (#{id,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, #{storeid,jdbcType=VARCHAR}, + #{bankcardno,jdbcType=VARCHAR}, #{bankaddressno,jdbcType=VARCHAR}, #{bankcertname,jdbcType=VARCHAR}, + #{bankname,jdbcType=VARCHAR}, #{branchname,jdbcType=VARCHAR}, #{accounttype,jdbcType=VARCHAR}, + #{contactline,jdbcType=VARCHAR}, #{branchprovince,jdbcType=VARCHAR}, #{branchcity,jdbcType=VARCHAR}, + #{brancharea,jdbcType=VARCHAR}, #{certtype,jdbcType=VARCHAR}, #{certno,jdbcType=VARCHAR}, + #{certstarttime,jdbcType=VARCHAR}, #{certendtime,jdbcType=VARCHAR}, #{cardholderaddress,jdbcType=VARCHAR}, + #{orderno,jdbcType=VARCHAR}, #{merchantid,jdbcType=VARCHAR}, #{registerstatus,jdbcType=VARCHAR}, + #{failreason,jdbcType=VARCHAR}, #{accountno,jdbcType=VARCHAR}, #{wechatchannellist,jdbcType=VARCHAR}, + #{phone,jdbcType=VARCHAR}, #{createdt,jdbcType=TIMESTAMP}, #{updatedt,jdbcType=TIMESTAMP}, + #{aisleswitch,jdbcType=VARCHAR}, #{certfullphoto,jdbcType=VARCHAR}, #{certbackphoto,jdbcType=VARCHAR}, + #{bankcardfrontpic,jdbcType=VARCHAR}, #{userid,jdbcType=VARCHAR}) + + + insert into tb_pluss_merchant_bank_card + + + id, + + + merchantCode, + + + storeId, + + + bankCardNo, + + + bankAddressNo, + + + bankCertName, + + + bankName, + + + branchName, + + + accountType, + + + contactLine, + + + branchProvince, + + + branchCity, + + + branchArea, + + + certType, + + + certNo, + + + certStartTime, + + + certEndTime, + + + cardHolderAddress, + + + orderNo, + + + merchantId, + + + registerStatus, + + + failReason, + + + accountNo, + + + wechatChannelList, + + + phone, + + + createDt, + + + updateDt, + + + aisleSwitch, + + + certFullPhoto, + + + certBacKPhoto, + + + bankCardFrontPic, + + + userId, + + + + + #{id,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{storeid,jdbcType=VARCHAR}, + + + #{bankcardno,jdbcType=VARCHAR}, + + + #{bankaddressno,jdbcType=VARCHAR}, + + + #{bankcertname,jdbcType=VARCHAR}, + + + #{bankname,jdbcType=VARCHAR}, + + + #{branchname,jdbcType=VARCHAR}, + + + #{accounttype,jdbcType=VARCHAR}, + + + #{contactline,jdbcType=VARCHAR}, + + + #{branchprovince,jdbcType=VARCHAR}, + + + #{branchcity,jdbcType=VARCHAR}, + + + #{brancharea,jdbcType=VARCHAR}, + + + #{certtype,jdbcType=VARCHAR}, + + + #{certno,jdbcType=VARCHAR}, + + + #{certstarttime,jdbcType=VARCHAR}, + + + #{certendtime,jdbcType=VARCHAR}, + + + #{cardholderaddress,jdbcType=VARCHAR}, + + + #{orderno,jdbcType=VARCHAR}, + + + #{merchantid,jdbcType=VARCHAR}, + + + #{registerstatus,jdbcType=VARCHAR}, + + + #{failreason,jdbcType=VARCHAR}, + + + #{accountno,jdbcType=VARCHAR}, + + + #{wechatchannellist,jdbcType=VARCHAR}, + + + #{phone,jdbcType=VARCHAR}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{updatedt,jdbcType=TIMESTAMP}, + + + #{aisleswitch,jdbcType=VARCHAR}, + + + #{certfullphoto,jdbcType=VARCHAR}, + + + #{certbackphoto,jdbcType=VARCHAR}, + + + #{bankcardfrontpic,jdbcType=VARCHAR}, + + + #{userid,jdbcType=VARCHAR}, + + + + + update tb_pluss_merchant_bank_card + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + storeId = #{storeid,jdbcType=VARCHAR}, + + + bankCardNo = #{bankcardno,jdbcType=VARCHAR}, + + + bankAddressNo = #{bankaddressno,jdbcType=VARCHAR}, + + + bankCertName = #{bankcertname,jdbcType=VARCHAR}, + + + bankName = #{bankname,jdbcType=VARCHAR}, + + + branchName = #{branchname,jdbcType=VARCHAR}, + + + accountType = #{accounttype,jdbcType=VARCHAR}, + + + contactLine = #{contactline,jdbcType=VARCHAR}, + + + branchProvince = #{branchprovince,jdbcType=VARCHAR}, + + + branchCity = #{branchcity,jdbcType=VARCHAR}, + + + branchArea = #{brancharea,jdbcType=VARCHAR}, + + + certType = #{certtype,jdbcType=VARCHAR}, + + + certNo = #{certno,jdbcType=VARCHAR}, + + + certStartTime = #{certstarttime,jdbcType=VARCHAR}, + + + certEndTime = #{certendtime,jdbcType=VARCHAR}, + + + cardHolderAddress = #{cardholderaddress,jdbcType=VARCHAR}, + + + orderNo = #{orderno,jdbcType=VARCHAR}, + + + merchantId = #{merchantid,jdbcType=VARCHAR}, + + + registerStatus = #{registerstatus,jdbcType=VARCHAR}, + + + failReason = #{failreason,jdbcType=VARCHAR}, + + + accountNo = #{accountno,jdbcType=VARCHAR}, + + + wechatChannelList = #{wechatchannellist,jdbcType=VARCHAR}, + + + phone = #{phone,jdbcType=VARCHAR}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + updateDt = #{updatedt,jdbcType=TIMESTAMP}, + + + aisleSwitch = #{aisleswitch,jdbcType=VARCHAR}, + + + certFullPhoto = #{certfullphoto,jdbcType=VARCHAR}, + + + certBacKPhoto = #{certbackphoto,jdbcType=VARCHAR}, + + + bankCardFrontPic = #{bankcardfrontpic,jdbcType=VARCHAR}, + + + userId = #{userid,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_bank_card + set merchantCode = #{merchantcode,jdbcType=VARCHAR}, + storeId = #{storeid,jdbcType=VARCHAR}, + bankCardNo = #{bankcardno,jdbcType=VARCHAR}, + bankAddressNo = #{bankaddressno,jdbcType=VARCHAR}, + bankCertName = #{bankcertname,jdbcType=VARCHAR}, + bankName = #{bankname,jdbcType=VARCHAR}, + branchName = #{branchname,jdbcType=VARCHAR}, + accountType = #{accounttype,jdbcType=VARCHAR}, + contactLine = #{contactline,jdbcType=VARCHAR}, + branchProvince = #{branchprovince,jdbcType=VARCHAR}, + branchCity = #{branchcity,jdbcType=VARCHAR}, + branchArea = #{brancharea,jdbcType=VARCHAR}, + certType = #{certtype,jdbcType=VARCHAR}, + certNo = #{certno,jdbcType=VARCHAR}, + certStartTime = #{certstarttime,jdbcType=VARCHAR}, + certEndTime = #{certendtime,jdbcType=VARCHAR}, + cardHolderAddress = #{cardholderaddress,jdbcType=VARCHAR}, + orderNo = #{orderno,jdbcType=VARCHAR}, + merchantId = #{merchantid,jdbcType=VARCHAR}, + registerStatus = #{registerstatus,jdbcType=VARCHAR}, + failReason = #{failreason,jdbcType=VARCHAR}, + accountNo = #{accountno,jdbcType=VARCHAR}, + wechatChannelList = #{wechatchannellist,jdbcType=VARCHAR}, + phone = #{phone,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + updateDt = #{updatedt,jdbcType=TIMESTAMP}, + aisleSwitch = #{aisleswitch,jdbcType=VARCHAR}, + certFullPhoto = #{certfullphoto,jdbcType=VARCHAR}, + certBacKPhoto = #{certbackphoto,jdbcType=VARCHAR}, + bankCardFrontPic = #{bankcardfrontpic,jdbcType=VARCHAR}, + userId = #{userid,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantBaseInfoMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantBaseInfoMapper.xml new file mode 100644 index 0000000..67c907f --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantBaseInfoMapper.xml @@ -0,0 +1,589 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, bindingCode, userId, aliAccount, merchantCode, merchantName, merchantType, productDesc, + aliMcc, mcc, mccName, alias, contactMobile, contactName, addressNo, province, city, + district, address, email, principalMobile, principalCertType, principalCertNo, principalPerson, + bussAuthName, bussAuthNum, bussAuthAddress, bussAuthStartTime, bussAuthEndTime, certOrgCode, + createDt, updateDt, creator, buslicType, isVoice, allowBankLarge, wxCertStatus, isPushWxMessage, + isUnionPay, md5Key, limitPay, subAppId, appid, firstTradeTime, lastTradeTime, splitFlag, + validFlag + + + + delete from tb_pluss_merchant_base_info + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_base_info (id, bindingCode, userId, + aliAccount, merchantCode, merchantName, + merchantType, productDesc, aliMcc, + mcc, mccName, alias, + contactMobile, contactName, addressNo, + province, city, district, + address, email, principalMobile, + principalCertType, principalCertNo, principalPerson, + bussAuthName, bussAuthNum, bussAuthAddress, + bussAuthStartTime, bussAuthEndTime, certOrgCode, + createDt, updateDt, creator, + buslicType, isVoice, allowBankLarge, + wxCertStatus, isPushWxMessage, isUnionPay, + md5Key, limitPay, subAppId, + appid, firstTradeTime, lastTradeTime, + splitFlag, validFlag) + values (#{id,jdbcType=INTEGER}, #{bindingcode,jdbcType=VARCHAR}, #{userid,jdbcType=INTEGER}, + #{aliaccount,jdbcType=VARCHAR}, #{merchantcode,jdbcType=VARCHAR}, #{merchantname,jdbcType=VARCHAR}, + #{merchanttype,jdbcType=VARCHAR}, #{productdesc,jdbcType=VARCHAR}, #{alimcc,jdbcType=VARCHAR}, + #{mcc,jdbcType=VARCHAR}, #{mccname,jdbcType=VARCHAR}, #{alias,jdbcType=VARCHAR}, + #{contactmobile,jdbcType=VARCHAR}, #{contactname,jdbcType=VARCHAR}, #{addressno,jdbcType=VARCHAR}, + #{province,jdbcType=VARCHAR}, #{city,jdbcType=VARCHAR}, #{district,jdbcType=VARCHAR}, + #{address,jdbcType=VARCHAR}, #{email,jdbcType=VARCHAR}, #{principalmobile,jdbcType=VARCHAR}, + #{principalcerttype,jdbcType=VARCHAR}, #{principalcertno,jdbcType=VARCHAR}, #{principalperson,jdbcType=VARCHAR}, + #{bussauthname,jdbcType=VARCHAR}, #{bussauthnum,jdbcType=VARCHAR}, #{bussauthaddress,jdbcType=VARCHAR}, + #{bussauthstarttime,jdbcType=VARCHAR}, #{bussauthendtime,jdbcType=VARCHAR}, #{certorgcode,jdbcType=VARCHAR}, + #{createdt,jdbcType=TIMESTAMP}, #{updatedt,jdbcType=TIMESTAMP}, #{creator,jdbcType=VARCHAR}, + #{buslictype,jdbcType=VARCHAR}, #{isvoice,jdbcType=VARCHAR}, #{allowbanklarge,jdbcType=VARCHAR}, + #{wxcertstatus,jdbcType=VARCHAR}, #{ispushwxmessage,jdbcType=CHAR}, #{isunionpay,jdbcType=CHAR}, + #{md5key,jdbcType=VARCHAR}, #{limitpay,jdbcType=VARCHAR}, #{subappid,jdbcType=VARCHAR}, + #{appid,jdbcType=VARCHAR}, #{firsttradetime,jdbcType=TIMESTAMP}, #{lasttradetime,jdbcType=TIMESTAMP}, + #{splitflag,jdbcType=TINYINT}, #{validflag,jdbcType=TINYINT}) + + + insert into tb_pluss_merchant_base_info + + + id, + + + bindingCode, + + + userId, + + + aliAccount, + + + merchantCode, + + + merchantName, + + + merchantType, + + + productDesc, + + + aliMcc, + + + mcc, + + + mccName, + + + alias, + + + contactMobile, + + + contactName, + + + addressNo, + + + province, + + + city, + + + district, + + + address, + + + email, + + + principalMobile, + + + principalCertType, + + + principalCertNo, + + + principalPerson, + + + bussAuthName, + + + bussAuthNum, + + + bussAuthAddress, + + + bussAuthStartTime, + + + bussAuthEndTime, + + + certOrgCode, + + + createDt, + + + updateDt, + + + creator, + + + buslicType, + + + isVoice, + + + allowBankLarge, + + + wxCertStatus, + + + isPushWxMessage, + + + isUnionPay, + + + md5Key, + + + limitPay, + + + subAppId, + + + appid, + + + firstTradeTime, + + + lastTradeTime, + + + splitFlag, + + + validFlag, + + + + + #{id,jdbcType=INTEGER}, + + + #{bindingcode,jdbcType=VARCHAR}, + + + #{userid,jdbcType=INTEGER}, + + + #{aliaccount,jdbcType=VARCHAR}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{merchanttype,jdbcType=VARCHAR}, + + + #{productdesc,jdbcType=VARCHAR}, + + + #{alimcc,jdbcType=VARCHAR}, + + + #{mcc,jdbcType=VARCHAR}, + + + #{mccname,jdbcType=VARCHAR}, + + + #{alias,jdbcType=VARCHAR}, + + + #{contactmobile,jdbcType=VARCHAR}, + + + #{contactname,jdbcType=VARCHAR}, + + + #{addressno,jdbcType=VARCHAR}, + + + #{province,jdbcType=VARCHAR}, + + + #{city,jdbcType=VARCHAR}, + + + #{district,jdbcType=VARCHAR}, + + + #{address,jdbcType=VARCHAR}, + + + #{email,jdbcType=VARCHAR}, + + + #{principalmobile,jdbcType=VARCHAR}, + + + #{principalcerttype,jdbcType=VARCHAR}, + + + #{principalcertno,jdbcType=VARCHAR}, + + + #{principalperson,jdbcType=VARCHAR}, + + + #{bussauthname,jdbcType=VARCHAR}, + + + #{bussauthnum,jdbcType=VARCHAR}, + + + #{bussauthaddress,jdbcType=VARCHAR}, + + + #{bussauthstarttime,jdbcType=VARCHAR}, + + + #{bussauthendtime,jdbcType=VARCHAR}, + + + #{certorgcode,jdbcType=VARCHAR}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{updatedt,jdbcType=TIMESTAMP}, + + + #{creator,jdbcType=VARCHAR}, + + + #{buslictype,jdbcType=VARCHAR}, + + + #{isvoice,jdbcType=VARCHAR}, + + + #{allowbanklarge,jdbcType=VARCHAR}, + + + #{wxcertstatus,jdbcType=VARCHAR}, + + + #{ispushwxmessage,jdbcType=CHAR}, + + + #{isunionpay,jdbcType=CHAR}, + + + #{md5key,jdbcType=VARCHAR}, + + + #{limitpay,jdbcType=VARCHAR}, + + + #{subappid,jdbcType=VARCHAR}, + + + #{appid,jdbcType=VARCHAR}, + + + #{firsttradetime,jdbcType=TIMESTAMP}, + + + #{lasttradetime,jdbcType=TIMESTAMP}, + + + #{splitflag,jdbcType=TINYINT}, + + + #{validflag,jdbcType=TINYINT}, + + + + + update tb_pluss_merchant_base_info + + + bindingCode = #{bindingcode,jdbcType=VARCHAR}, + + + userId = #{userid,jdbcType=INTEGER}, + + + aliAccount = #{aliaccount,jdbcType=VARCHAR}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + merchantType = #{merchanttype,jdbcType=VARCHAR}, + + + productDesc = #{productdesc,jdbcType=VARCHAR}, + + + aliMcc = #{alimcc,jdbcType=VARCHAR}, + + + mcc = #{mcc,jdbcType=VARCHAR}, + + + mccName = #{mccname,jdbcType=VARCHAR}, + + + alias = #{alias,jdbcType=VARCHAR}, + + + contactMobile = #{contactmobile,jdbcType=VARCHAR}, + + + contactName = #{contactname,jdbcType=VARCHAR}, + + + addressNo = #{addressno,jdbcType=VARCHAR}, + + + province = #{province,jdbcType=VARCHAR}, + + + city = #{city,jdbcType=VARCHAR}, + + + district = #{district,jdbcType=VARCHAR}, + + + address = #{address,jdbcType=VARCHAR}, + + + email = #{email,jdbcType=VARCHAR}, + + + principalMobile = #{principalmobile,jdbcType=VARCHAR}, + + + principalCertType = #{principalcerttype,jdbcType=VARCHAR}, + + + principalCertNo = #{principalcertno,jdbcType=VARCHAR}, + + + principalPerson = #{principalperson,jdbcType=VARCHAR}, + + + bussAuthName = #{bussauthname,jdbcType=VARCHAR}, + + + bussAuthNum = #{bussauthnum,jdbcType=VARCHAR}, + + + bussAuthAddress = #{bussauthaddress,jdbcType=VARCHAR}, + + + bussAuthStartTime = #{bussauthstarttime,jdbcType=VARCHAR}, + + + bussAuthEndTime = #{bussauthendtime,jdbcType=VARCHAR}, + + + certOrgCode = #{certorgcode,jdbcType=VARCHAR}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + updateDt = #{updatedt,jdbcType=TIMESTAMP}, + + + creator = #{creator,jdbcType=VARCHAR}, + + + buslicType = #{buslictype,jdbcType=VARCHAR}, + + + isVoice = #{isvoice,jdbcType=VARCHAR}, + + + allowBankLarge = #{allowbanklarge,jdbcType=VARCHAR}, + + + wxCertStatus = #{wxcertstatus,jdbcType=VARCHAR}, + + + isPushWxMessage = #{ispushwxmessage,jdbcType=CHAR}, + + + isUnionPay = #{isunionpay,jdbcType=CHAR}, + + + md5Key = #{md5key,jdbcType=VARCHAR}, + + + limitPay = #{limitpay,jdbcType=VARCHAR}, + + + subAppId = #{subappid,jdbcType=VARCHAR}, + + + appid = #{appid,jdbcType=VARCHAR}, + + + firstTradeTime = #{firsttradetime,jdbcType=TIMESTAMP}, + + + lastTradeTime = #{lasttradetime,jdbcType=TIMESTAMP}, + + + splitFlag = #{splitflag,jdbcType=TINYINT}, + + + validFlag = #{validflag,jdbcType=TINYINT}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_base_info + set bindingCode = #{bindingcode,jdbcType=VARCHAR}, + userId = #{userid,jdbcType=INTEGER}, + aliAccount = #{aliaccount,jdbcType=VARCHAR}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + merchantType = #{merchanttype,jdbcType=VARCHAR}, + productDesc = #{productdesc,jdbcType=VARCHAR}, + aliMcc = #{alimcc,jdbcType=VARCHAR}, + mcc = #{mcc,jdbcType=VARCHAR}, + mccName = #{mccname,jdbcType=VARCHAR}, + alias = #{alias,jdbcType=VARCHAR}, + contactMobile = #{contactmobile,jdbcType=VARCHAR}, + contactName = #{contactname,jdbcType=VARCHAR}, + addressNo = #{addressno,jdbcType=VARCHAR}, + province = #{province,jdbcType=VARCHAR}, + city = #{city,jdbcType=VARCHAR}, + district = #{district,jdbcType=VARCHAR}, + address = #{address,jdbcType=VARCHAR}, + email = #{email,jdbcType=VARCHAR}, + principalMobile = #{principalmobile,jdbcType=VARCHAR}, + principalCertType = #{principalcerttype,jdbcType=VARCHAR}, + principalCertNo = #{principalcertno,jdbcType=VARCHAR}, + principalPerson = #{principalperson,jdbcType=VARCHAR}, + bussAuthName = #{bussauthname,jdbcType=VARCHAR}, + bussAuthNum = #{bussauthnum,jdbcType=VARCHAR}, + bussAuthAddress = #{bussauthaddress,jdbcType=VARCHAR}, + bussAuthStartTime = #{bussauthstarttime,jdbcType=VARCHAR}, + bussAuthEndTime = #{bussauthendtime,jdbcType=VARCHAR}, + certOrgCode = #{certorgcode,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + updateDt = #{updatedt,jdbcType=TIMESTAMP}, + creator = #{creator,jdbcType=VARCHAR}, + buslicType = #{buslictype,jdbcType=VARCHAR}, + isVoice = #{isvoice,jdbcType=VARCHAR}, + allowBankLarge = #{allowbanklarge,jdbcType=VARCHAR}, + wxCertStatus = #{wxcertstatus,jdbcType=VARCHAR}, + isPushWxMessage = #{ispushwxmessage,jdbcType=CHAR}, + isUnionPay = #{isunionpay,jdbcType=CHAR}, + md5Key = #{md5key,jdbcType=VARCHAR}, + limitPay = #{limitpay,jdbcType=VARCHAR}, + subAppId = #{subappid,jdbcType=VARCHAR}, + appid = #{appid,jdbcType=VARCHAR}, + firstTradeTime = #{firsttradetime,jdbcType=TIMESTAMP}, + lastTradeTime = #{lasttradetime,jdbcType=TIMESTAMP}, + splitFlag = #{splitflag,jdbcType=TINYINT}, + validFlag = #{validflag,jdbcType=TINYINT} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantBillStatisticsMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantBillStatisticsMapper.xml new file mode 100644 index 0000000..6e7341a --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantBillStatisticsMapper.xml @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + id, userId, startDate, endDate, lastStartDate, lastEndDate, type, amount, count, + remark, createTime, updateTime + + + + delete from tb_pluss_merchant_bill_statistics + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_bill_statistics (id, userId, startDate, + endDate, lastStartDate, lastEndDate, + type, amount, count, + remark, createTime, updateTime + ) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{startdate,jdbcType=DATE}, + #{enddate,jdbcType=DATE}, #{laststartdate,jdbcType=DATE}, #{lastenddate,jdbcType=DATE}, + #{type,jdbcType=TINYINT}, #{amount,jdbcType=DECIMAL}, #{count,jdbcType=INTEGER}, + #{remark,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP} + ) + + + insert into tb_pluss_merchant_bill_statistics + + + id, + + + userId, + + + startDate, + + + endDate, + + + lastStartDate, + + + lastEndDate, + + + type, + + + amount, + + + count, + + + remark, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{startdate,jdbcType=DATE}, + + + #{enddate,jdbcType=DATE}, + + + #{laststartdate,jdbcType=DATE}, + + + #{lastenddate,jdbcType=DATE}, + + + #{type,jdbcType=TINYINT}, + + + #{amount,jdbcType=DECIMAL}, + + + #{count,jdbcType=INTEGER}, + + + #{remark,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_merchant_bill_statistics + + + userId = #{userid,jdbcType=INTEGER}, + + + startDate = #{startdate,jdbcType=DATE}, + + + endDate = #{enddate,jdbcType=DATE}, + + + lastStartDate = #{laststartdate,jdbcType=DATE}, + + + lastEndDate = #{lastenddate,jdbcType=DATE}, + + + type = #{type,jdbcType=TINYINT}, + + + amount = #{amount,jdbcType=DECIMAL}, + + + count = #{count,jdbcType=INTEGER}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_bill_statistics + set userId = #{userid,jdbcType=INTEGER}, + startDate = #{startdate,jdbcType=DATE}, + endDate = #{enddate,jdbcType=DATE}, + lastStartDate = #{laststartdate,jdbcType=DATE}, + lastEndDate = #{lastenddate,jdbcType=DATE}, + type = #{type,jdbcType=TINYINT}, + amount = #{amount,jdbcType=DECIMAL}, + count = #{count,jdbcType=INTEGER}, + remark = #{remark,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantCashPayCodeMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantCashPayCodeMapper.xml new file mode 100644 index 0000000..4405595 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantCashPayCodeMapper.xml @@ -0,0 +1,93 @@ + + + + + + + + + + + + id, cashPlaceId, payCode, createTime, updateTime + + + + delete from tb_pluss_merchant_cash_pay_code + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_cash_pay_code (id, cashPlaceId, payCode, + createTime, updateTime) + values (#{id,jdbcType=INTEGER}, #{cashplaceid,jdbcType=INTEGER}, #{paycode,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_merchant_cash_pay_code + + + id, + + + cashPlaceId, + + + payCode, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{cashplaceid,jdbcType=INTEGER}, + + + #{paycode,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_merchant_cash_pay_code + + + cashPlaceId = #{cashplaceid,jdbcType=INTEGER}, + + + payCode = #{paycode,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_cash_pay_code + set cashPlaceId = #{cashplaceid,jdbcType=INTEGER}, + payCode = #{paycode,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantCashPlaceMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantCashPlaceMapper.xml new file mode 100644 index 0000000..1dd9791 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantCashPlaceMapper.xml @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + + id, logo, userId, bindingCode, name, code, address, remark, createTime, updateTime + + + + delete from tb_pluss_merchant_cash_place + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_cash_place (id, logo, userId, + bindingCode, name, code, + address, remark, createTime, + updateTime) + values (#{id,jdbcType=INTEGER}, #{logo,jdbcType=VARCHAR}, #{userid,jdbcType=INTEGER}, + #{bindingcode,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, #{code,jdbcType=VARCHAR}, + #{address,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, + #{updatetime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_merchant_cash_place + + + id, + + + logo, + + + userId, + + + bindingCode, + + + name, + + + code, + + + address, + + + remark, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{logo,jdbcType=VARCHAR}, + + + #{userid,jdbcType=INTEGER}, + + + #{bindingcode,jdbcType=VARCHAR}, + + + #{name,jdbcType=VARCHAR}, + + + #{code,jdbcType=VARCHAR}, + + + #{address,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_merchant_cash_place + + + logo = #{logo,jdbcType=VARCHAR}, + + + userId = #{userid,jdbcType=INTEGER}, + + + bindingCode = #{bindingcode,jdbcType=VARCHAR}, + + + name = #{name,jdbcType=VARCHAR}, + + + code = #{code,jdbcType=VARCHAR}, + + + address = #{address,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_cash_place + set logo = #{logo,jdbcType=VARCHAR}, + userId = #{userid,jdbcType=INTEGER}, + bindingCode = #{bindingcode,jdbcType=VARCHAR}, + name = #{name,jdbcType=VARCHAR}, + code = #{code,jdbcType=VARCHAR}, + address = #{address,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantCashPlaceStaffMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantCashPlaceStaffMapper.xml new file mode 100644 index 0000000..b33af4e --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantCashPlaceStaffMapper.xml @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + id, userId, cashPlaceId, remark, status, createTime, updateTime + + + + delete from tb_pluss_merchant_cash_place_staff + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_cash_place_staff (id, userId, cashPlaceId, + remark, status, createTime, + updateTime) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{cashplaceid,jdbcType=INTEGER}, + #{remark,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, + #{updatetime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_merchant_cash_place_staff + + + id, + + + userId, + + + cashPlaceId, + + + remark, + + + status, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{cashplaceid,jdbcType=INTEGER}, + + + #{remark,jdbcType=VARCHAR}, + + + #{status,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_merchant_cash_place_staff + + + userId = #{userid,jdbcType=INTEGER}, + + + cashPlaceId = #{cashplaceid,jdbcType=INTEGER}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_cash_place_staff + set userId = #{userid,jdbcType=INTEGER}, + cashPlaceId = #{cashplaceid,jdbcType=INTEGER}, + remark = #{remark,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantChannelFeeMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantChannelFeeMapper.xml new file mode 100644 index 0000000..ad2e2b6 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantChannelFeeMapper.xml @@ -0,0 +1,106 @@ + + + + + + + + + + + + + id, merchant_code, channel, fee_str, create_time, update_time + + + + delete from tb_pluss_merchant_channel_fee + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_channel_fee (id, merchant_code, channel, + fee_str, create_time, update_time + ) + values (#{id,jdbcType=INTEGER}, #{merchantCode,jdbcType=VARCHAR}, #{channel,jdbcType=VARCHAR}, + #{feeStr,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP} + ) + + + insert into tb_pluss_merchant_channel_fee + + + id, + + + merchant_code, + + + channel, + + + fee_str, + + + create_time, + + + update_time, + + + + + #{id,jdbcType=INTEGER}, + + + #{merchantCode,jdbcType=VARCHAR}, + + + #{channel,jdbcType=VARCHAR}, + + + #{feeStr,jdbcType=VARCHAR}, + + + #{createTime,jdbcType=TIMESTAMP}, + + + #{updateTime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_merchant_channel_fee + + + merchant_code = #{merchantCode,jdbcType=VARCHAR}, + + + channel = #{channel,jdbcType=VARCHAR}, + + + fee_str = #{feeStr,jdbcType=VARCHAR}, + + + create_time = #{createTime,jdbcType=TIMESTAMP}, + + + update_time = #{updateTime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_channel_fee + set merchant_code = #{merchantCode,jdbcType=VARCHAR}, + channel = #{channel,jdbcType=VARCHAR}, + fee_str = #{feeStr,jdbcType=VARCHAR}, + create_time = #{createTime,jdbcType=TIMESTAMP}, + update_time = #{updateTime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantChannelImgBakMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantChannelImgBakMapper.xml new file mode 100644 index 0000000..bf10d13 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantChannelImgBakMapper.xml @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + id, merImgId, channelType, channelImgUrl, createTime, updateTime, srcUrl + + + + delete from tb_pluss_merchant_channel_img_bak + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_channel_img_bak (id, merImgId, channelType, + channelImgUrl, createTime, updateTime, + srcUrl) + values (#{id,jdbcType=INTEGER}, #{merimgid,jdbcType=INTEGER}, #{channeltype,jdbcType=INTEGER}, + #{channelimgurl,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}, + #{srcurl,jdbcType=VARCHAR}) + + + insert into tb_pluss_merchant_channel_img_bak + + + id, + + + merImgId, + + + channelType, + + + channelImgUrl, + + + createTime, + + + updateTime, + + + srcUrl, + + + + + #{id,jdbcType=INTEGER}, + + + #{merimgid,jdbcType=INTEGER}, + + + #{channeltype,jdbcType=INTEGER}, + + + #{channelimgurl,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{srcurl,jdbcType=VARCHAR}, + + + + + update tb_pluss_merchant_channel_img_bak + + + merImgId = #{merimgid,jdbcType=INTEGER}, + + + channelType = #{channeltype,jdbcType=INTEGER}, + + + channelImgUrl = #{channelimgurl,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + srcUrl = #{srcurl,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_channel_img_bak + set merImgId = #{merimgid,jdbcType=INTEGER}, + channelType = #{channeltype,jdbcType=INTEGER}, + channelImgUrl = #{channelimgurl,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + srcUrl = #{srcurl,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantChannelImgMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantChannelImgMapper.xml new file mode 100644 index 0000000..b2319d6 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantChannelImgMapper.xml @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + id, merImgId, channelType, channelImgUrl, createTime, updateTime, srcUrl + + + + delete from tb_pluss_merchant_channel_img + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_channel_img (id, merImgId, channelType, + channelImgUrl, createTime, updateTime, + srcUrl) + values (#{id,jdbcType=INTEGER}, #{merimgid,jdbcType=INTEGER}, #{channeltype,jdbcType=INTEGER}, + #{channelimgurl,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}, + #{srcurl,jdbcType=VARCHAR}) + + + insert into tb_pluss_merchant_channel_img + + + id, + + + merImgId, + + + channelType, + + + channelImgUrl, + + + createTime, + + + updateTime, + + + srcUrl, + + + + + #{id,jdbcType=INTEGER}, + + + #{merimgid,jdbcType=INTEGER}, + + + #{channeltype,jdbcType=INTEGER}, + + + #{channelimgurl,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{srcurl,jdbcType=VARCHAR}, + + + + + update tb_pluss_merchant_channel_img + + + merImgId = #{merimgid,jdbcType=INTEGER}, + + + channelType = #{channeltype,jdbcType=INTEGER}, + + + channelImgUrl = #{channelimgurl,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + srcUrl = #{srcurl,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_channel_img + set merImgId = #{merimgid,jdbcType=INTEGER}, + channelType = #{channeltype,jdbcType=INTEGER}, + channelImgUrl = #{channelimgurl,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + srcUrl = #{srcurl,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantChannelMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantChannelMapper.xml new file mode 100644 index 0000000..5a8d1d1 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantChannelMapper.xml @@ -0,0 +1,93 @@ + + + + + + + + + + + + id, channelName, channelCode, status, wxCertImg + + + + delete from tb_pluss_merchant_channel + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_channel (id, channelName, channelCode, + status, wxCertImg) + values (#{id,jdbcType=INTEGER}, #{channelname,jdbcType=VARCHAR}, #{channelcode,jdbcType=VARCHAR}, + #{status,jdbcType=VARCHAR}, #{wxcertimg,jdbcType=VARCHAR}) + + + insert into tb_pluss_merchant_channel + + + id, + + + channelName, + + + channelCode, + + + status, + + + wxCertImg, + + + + + #{id,jdbcType=INTEGER}, + + + #{channelname,jdbcType=VARCHAR}, + + + #{channelcode,jdbcType=VARCHAR}, + + + #{status,jdbcType=VARCHAR}, + + + #{wxcertimg,jdbcType=VARCHAR}, + + + + + update tb_pluss_merchant_channel + + + channelName = #{channelname,jdbcType=VARCHAR}, + + + channelCode = #{channelcode,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=VARCHAR}, + + + wxCertImg = #{wxcertimg,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_channel + set channelName = #{channelname,jdbcType=VARCHAR}, + channelCode = #{channelcode,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + wxCertImg = #{wxcertimg,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantChannelStatusMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantChannelStatusMapper.xml new file mode 100644 index 0000000..93588b5 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantChannelStatusMapper.xml @@ -0,0 +1,352 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, channel, merchantCode, merchantId, settlementType, status, thirdStatus, remark, + createTime, updateTime, applicationId, callbackStatus, valid, authorizationStatus, + mercName, virChannelFlag, virStatusFlag, srcMerchantNo, interfaceVersion, aliAuthorizationStatus, + wxCertUrl, aliCertUrl, auditSuccessTime + + + extra + + + + delete from tb_pluss_merchant_channel_status + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_channel_status (id, channel, merchantCode, + merchantId, settlementType, status, + thirdStatus, remark, createTime, + updateTime, applicationId, callbackStatus, + valid, authorizationStatus, mercName, + virChannelFlag, virStatusFlag, srcMerchantNo, + interfaceVersion, aliAuthorizationStatus, + wxCertUrl, aliCertUrl, auditSuccessTime, + extra) + values (#{id,jdbcType=INTEGER}, #{channel,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, + #{merchantid,jdbcType=VARCHAR}, #{settlementtype,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, + #{thirdstatus,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, + #{updatetime,jdbcType=TIMESTAMP}, #{applicationid,jdbcType=VARCHAR}, #{callbackstatus,jdbcType=VARCHAR}, + #{valid,jdbcType=INTEGER}, #{authorizationstatus,jdbcType=VARCHAR}, #{mercname,jdbcType=VARCHAR}, + #{virchannelflag,jdbcType=VARCHAR}, #{virstatusflag,jdbcType=VARCHAR}, #{srcmerchantno,jdbcType=VARCHAR}, + #{interfaceversion,jdbcType=VARCHAR}, #{aliauthorizationstatus,jdbcType=VARCHAR}, + #{wxcerturl,jdbcType=VARCHAR}, #{alicerturl,jdbcType=VARCHAR}, #{auditsuccesstime,jdbcType=TIMESTAMP}, + #{extra,jdbcType=LONGVARCHAR}) + + + insert into tb_pluss_merchant_channel_status + + + id, + + + channel, + + + merchantCode, + + + merchantId, + + + settlementType, + + + status, + + + thirdStatus, + + + remark, + + + createTime, + + + updateTime, + + + applicationId, + + + callbackStatus, + + + valid, + + + authorizationStatus, + + + mercName, + + + virChannelFlag, + + + virStatusFlag, + + + srcMerchantNo, + + + interfaceVersion, + + + aliAuthorizationStatus, + + + wxCertUrl, + + + aliCertUrl, + + + auditSuccessTime, + + + extra, + + + + + #{id,jdbcType=INTEGER}, + + + #{channel,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantid,jdbcType=VARCHAR}, + + + #{settlementtype,jdbcType=VARCHAR}, + + + #{status,jdbcType=VARCHAR}, + + + #{thirdstatus,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{applicationid,jdbcType=VARCHAR}, + + + #{callbackstatus,jdbcType=VARCHAR}, + + + #{valid,jdbcType=INTEGER}, + + + #{authorizationstatus,jdbcType=VARCHAR}, + + + #{mercname,jdbcType=VARCHAR}, + + + #{virchannelflag,jdbcType=VARCHAR}, + + + #{virstatusflag,jdbcType=VARCHAR}, + + + #{srcmerchantno,jdbcType=VARCHAR}, + + + #{interfaceversion,jdbcType=VARCHAR}, + + + #{aliauthorizationstatus,jdbcType=VARCHAR}, + + + #{wxcerturl,jdbcType=VARCHAR}, + + + #{alicerturl,jdbcType=VARCHAR}, + + + #{auditsuccesstime,jdbcType=TIMESTAMP}, + + + #{extra,jdbcType=LONGVARCHAR}, + + + + + update tb_pluss_merchant_channel_status + + + channel = #{channel,jdbcType=INTEGER}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantId = #{merchantid,jdbcType=VARCHAR}, + + + settlementType = #{settlementtype,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=VARCHAR}, + + + thirdStatus = #{thirdstatus,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + applicationId = #{applicationid,jdbcType=VARCHAR}, + + + callbackStatus = #{callbackstatus,jdbcType=VARCHAR}, + + + valid = #{valid,jdbcType=INTEGER}, + + + authorizationStatus = #{authorizationstatus,jdbcType=VARCHAR}, + + + mercName = #{mercname,jdbcType=VARCHAR}, + + + virChannelFlag = #{virchannelflag,jdbcType=VARCHAR}, + + + virStatusFlag = #{virstatusflag,jdbcType=VARCHAR}, + + + srcMerchantNo = #{srcmerchantno,jdbcType=VARCHAR}, + + + interfaceVersion = #{interfaceversion,jdbcType=VARCHAR}, + + + aliAuthorizationStatus = #{aliauthorizationstatus,jdbcType=VARCHAR}, + + + wxCertUrl = #{wxcerturl,jdbcType=VARCHAR}, + + + aliCertUrl = #{alicerturl,jdbcType=VARCHAR}, + + + auditSuccessTime = #{auditsuccesstime,jdbcType=TIMESTAMP}, + + + extra = #{extra,jdbcType=LONGVARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_channel_status + set channel = #{channel,jdbcType=INTEGER}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantId = #{merchantid,jdbcType=VARCHAR}, + settlementType = #{settlementtype,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + thirdStatus = #{thirdstatus,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + applicationId = #{applicationid,jdbcType=VARCHAR}, + callbackStatus = #{callbackstatus,jdbcType=VARCHAR}, + valid = #{valid,jdbcType=INTEGER}, + authorizationStatus = #{authorizationstatus,jdbcType=VARCHAR}, + mercName = #{mercname,jdbcType=VARCHAR}, + virChannelFlag = #{virchannelflag,jdbcType=VARCHAR}, + virStatusFlag = #{virstatusflag,jdbcType=VARCHAR}, + srcMerchantNo = #{srcmerchantno,jdbcType=VARCHAR}, + interfaceVersion = #{interfaceversion,jdbcType=VARCHAR}, + aliAuthorizationStatus = #{aliauthorizationstatus,jdbcType=VARCHAR}, + wxCertUrl = #{wxcerturl,jdbcType=VARCHAR}, + aliCertUrl = #{alicerturl,jdbcType=VARCHAR}, + auditSuccessTime = #{auditsuccesstime,jdbcType=TIMESTAMP}, + extra = #{extra,jdbcType=LONGVARCHAR} + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_channel_status + set channel = #{channel,jdbcType=INTEGER}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantId = #{merchantid,jdbcType=VARCHAR}, + settlementType = #{settlementtype,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + thirdStatus = #{thirdstatus,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + applicationId = #{applicationid,jdbcType=VARCHAR}, + callbackStatus = #{callbackstatus,jdbcType=VARCHAR}, + valid = #{valid,jdbcType=INTEGER}, + authorizationStatus = #{authorizationstatus,jdbcType=VARCHAR}, + mercName = #{mercname,jdbcType=VARCHAR}, + virChannelFlag = #{virchannelflag,jdbcType=VARCHAR}, + virStatusFlag = #{virstatusflag,jdbcType=VARCHAR}, + srcMerchantNo = #{srcmerchantno,jdbcType=VARCHAR}, + interfaceVersion = #{interfaceversion,jdbcType=VARCHAR}, + aliAuthorizationStatus = #{aliauthorizationstatus,jdbcType=VARCHAR}, + wxCertUrl = #{wxcerturl,jdbcType=VARCHAR}, + aliCertUrl = #{alicerturl,jdbcType=VARCHAR}, + auditSuccessTime = #{auditsuccesstime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantComplaintImageMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantComplaintImageMapper.xml new file mode 100644 index 0000000..105dabd --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantComplaintImageMapper.xml @@ -0,0 +1,82 @@ + + + + + + + + + + + id, complaintId, picUrl, createTime + + + + delete from tb_pluss_merchant_complaint_image + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_complaint_image (id, complaintId, picUrl, + createTime) + values (#{id,jdbcType=INTEGER}, #{complaintid,jdbcType=INTEGER}, #{picurl,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_merchant_complaint_image + + + id, + + + complaintId, + + + picUrl, + + + createTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{complaintid,jdbcType=INTEGER}, + + + #{picurl,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_merchant_complaint_image + + + complaintId = #{complaintid,jdbcType=INTEGER}, + + + picUrl = #{picurl,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_complaint_image + set complaintId = #{complaintid,jdbcType=INTEGER}, + picUrl = #{picurl,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantComplaintRecordMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantComplaintRecordMapper.xml new file mode 100644 index 0000000..e6cdddc --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantComplaintRecordMapper.xml @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + id, merchantCode, merchantName, orderAmt, payTime, complaintPhone, remark, orderNumber, + createTime, status + + + + delete from tb_pluss_merchant_complaint_record + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_complaint_record (id, merchantCode, merchantName, + orderAmt, payTime, complaintPhone, + remark, orderNumber, createTime, + status) + values (#{id,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, #{merchantname,jdbcType=VARCHAR}, + #{orderamt,jdbcType=DECIMAL}, #{paytime,jdbcType=TIMESTAMP}, #{complaintphone,jdbcType=VARCHAR}, + #{remark,jdbcType=VARCHAR}, #{ordernumber,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, + #{status,jdbcType=CHAR}) + + + insert into tb_pluss_merchant_complaint_record + + + id, + + + merchantCode, + + + merchantName, + + + orderAmt, + + + payTime, + + + complaintPhone, + + + remark, + + + orderNumber, + + + createTime, + + + status, + + + + + #{id,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{orderamt,jdbcType=DECIMAL}, + + + #{paytime,jdbcType=TIMESTAMP}, + + + #{complaintphone,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{ordernumber,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{status,jdbcType=CHAR}, + + + + + update tb_pluss_merchant_complaint_record + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + orderAmt = #{orderamt,jdbcType=DECIMAL}, + + + payTime = #{paytime,jdbcType=TIMESTAMP}, + + + complaintPhone = #{complaintphone,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + status = #{status,jdbcType=CHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_complaint_record + set merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + orderAmt = #{orderamt,jdbcType=DECIMAL}, + payTime = #{paytime,jdbcType=TIMESTAMP}, + complaintPhone = #{complaintphone,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + status = #{status,jdbcType=CHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantDeviceMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantDeviceMapper.xml new file mode 100644 index 0000000..90f9457 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantDeviceMapper.xml @@ -0,0 +1,188 @@ + + + + + + + + + + + + + + + + + + + + id, name, type, introDesc, status, createDt, merchantCode, merchantName, userId, + sn, venderCode, venderModel, orderNo + + + + delete from tb_pluss_merchant_device + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_device (id, name, type, + introDesc, status, createDt, + merchantCode, merchantName, userId, + sn, venderCode, venderModel, + orderNo) + values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{type,jdbcType=VARCHAR}, + #{introdesc,jdbcType=VARCHAR}, #{status,jdbcType=INTEGER}, #{createdt,jdbcType=TIMESTAMP}, + #{merchantcode,jdbcType=VARCHAR}, #{merchantname,jdbcType=VARCHAR}, #{userid,jdbcType=INTEGER}, + #{sn,jdbcType=VARCHAR}, #{vendercode,jdbcType=VARCHAR}, #{vendermodel,jdbcType=VARCHAR}, + #{orderno,jdbcType=VARCHAR}) + + + insert into tb_pluss_merchant_device + + + id, + + + name, + + + type, + + + introDesc, + + + status, + + + createDt, + + + merchantCode, + + + merchantName, + + + userId, + + + sn, + + + venderCode, + + + venderModel, + + + orderNo, + + + + + #{id,jdbcType=INTEGER}, + + + #{name,jdbcType=VARCHAR}, + + + #{type,jdbcType=VARCHAR}, + + + #{introdesc,jdbcType=VARCHAR}, + + + #{status,jdbcType=INTEGER}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{userid,jdbcType=INTEGER}, + + + #{sn,jdbcType=VARCHAR}, + + + #{vendercode,jdbcType=VARCHAR}, + + + #{vendermodel,jdbcType=VARCHAR}, + + + #{orderno,jdbcType=VARCHAR}, + + + + + update tb_pluss_merchant_device + + + name = #{name,jdbcType=VARCHAR}, + + + type = #{type,jdbcType=VARCHAR}, + + + introDesc = #{introdesc,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=INTEGER}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + userId = #{userid,jdbcType=INTEGER}, + + + sn = #{sn,jdbcType=VARCHAR}, + + + venderCode = #{vendercode,jdbcType=VARCHAR}, + + + venderModel = #{vendermodel,jdbcType=VARCHAR}, + + + orderNo = #{orderno,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_device + set name = #{name,jdbcType=VARCHAR}, + type = #{type,jdbcType=VARCHAR}, + introDesc = #{introdesc,jdbcType=VARCHAR}, + status = #{status,jdbcType=INTEGER}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + userId = #{userid,jdbcType=INTEGER}, + sn = #{sn,jdbcType=VARCHAR}, + venderCode = #{vendercode,jdbcType=VARCHAR}, + venderModel = #{vendermodel,jdbcType=VARCHAR}, + orderNo = #{orderno,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantGuideMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantGuideMapper.xml new file mode 100644 index 0000000..c4d10b3 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantGuideMapper.xml @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + id, merchantCode, merchantName, name, status, createTime, updateTime, guideId + + + + delete from tb_pluss_merchant_guide + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_guide (id, merchantCode, merchantName, + name, status, createTime, + updateTime, guideId) + values (#{id,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, #{merchantname,jdbcType=VARCHAR}, + #{name,jdbcType=VARCHAR}, #{status,jdbcType=CHAR}, #{createtime,jdbcType=TIMESTAMP}, + #{updatetime,jdbcType=TIMESTAMP}, #{guideid,jdbcType=INTEGER}) + + + insert into tb_pluss_merchant_guide + + + id, + + + merchantCode, + + + merchantName, + + + name, + + + status, + + + createTime, + + + updateTime, + + + guideId, + + + + + #{id,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{name,jdbcType=VARCHAR}, + + + #{status,jdbcType=CHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{guideid,jdbcType=INTEGER}, + + + + + update tb_pluss_merchant_guide + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + name = #{name,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=CHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + guideId = #{guideid,jdbcType=INTEGER}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_guide + set merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + name = #{name,jdbcType=VARCHAR}, + status = #{status,jdbcType=CHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + guideId = #{guideid,jdbcType=INTEGER} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantImageMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantImageMapper.xml new file mode 100644 index 0000000..238319f --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantImageMapper.xml @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + id, merchantCode, photoType, photoUrl, picUrl, createDt, updateDt, aisleSwitch + + + + delete from tb_pluss_merchant_image + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_image (id, merchantCode, photoType, + photoUrl, picUrl, createDt, + updateDt, aisleSwitch) + values (#{id,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, #{phototype,jdbcType=VARCHAR}, + #{photourl,jdbcType=VARCHAR}, #{picurl,jdbcType=VARCHAR}, #{createdt,jdbcType=TIMESTAMP}, + #{updatedt,jdbcType=TIMESTAMP}, #{aisleswitch,jdbcType=VARCHAR}) + + + insert into tb_pluss_merchant_image + + + id, + + + merchantCode, + + + photoType, + + + photoUrl, + + + picUrl, + + + createDt, + + + updateDt, + + + aisleSwitch, + + + + + #{id,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{phototype,jdbcType=VARCHAR}, + + + #{photourl,jdbcType=VARCHAR}, + + + #{picurl,jdbcType=VARCHAR}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{updatedt,jdbcType=TIMESTAMP}, + + + #{aisleswitch,jdbcType=VARCHAR}, + + + + + update tb_pluss_merchant_image + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + photoType = #{phototype,jdbcType=VARCHAR}, + + + photoUrl = #{photourl,jdbcType=VARCHAR}, + + + picUrl = #{picurl,jdbcType=VARCHAR}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + updateDt = #{updatedt,jdbcType=TIMESTAMP}, + + + aisleSwitch = #{aisleswitch,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_image + set merchantCode = #{merchantcode,jdbcType=VARCHAR}, + photoType = #{phototype,jdbcType=VARCHAR}, + photoUrl = #{photourl,jdbcType=VARCHAR}, + picUrl = #{picurl,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + updateDt = #{updatedt,jdbcType=TIMESTAMP}, + aisleSwitch = #{aisleswitch,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantIncomeMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantIncomeMapper.xml new file mode 100644 index 0000000..34970b3 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantIncomeMapper.xml @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + id, userId, merchantCode, merchantName, storeId, storeName, dealType, dealFee, incomeFee, + createTime, payTypeCode, payTypeName, memberCode, memberName, memberPic, incomeType, + plateformProfit, promoterProfit, dealStatus, dealCode + + + + delete from tb_pluss_merchant_income + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_income (id, userId, merchantCode, + merchantName, storeId, storeName, + dealType, dealFee, incomeFee, + createTime, payTypeCode, payTypeName, + memberCode, memberName, memberPic, + incomeType, plateformProfit, promoterProfit, + dealStatus, dealCode) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, + #{merchantname,jdbcType=VARCHAR}, #{storeid,jdbcType=VARCHAR}, #{storename,jdbcType=VARCHAR}, + #{dealtype,jdbcType=INTEGER}, #{dealfee,jdbcType=DOUBLE}, #{incomefee,jdbcType=DOUBLE}, + #{createtime,jdbcType=TIMESTAMP}, #{paytypecode,jdbcType=VARCHAR}, #{paytypename,jdbcType=VARCHAR}, + #{membercode,jdbcType=VARCHAR}, #{membername,jdbcType=VARCHAR}, #{memberpic,jdbcType=VARCHAR}, + #{incometype,jdbcType=VARCHAR}, #{plateformprofit,jdbcType=DOUBLE}, #{promoterprofit,jdbcType=DOUBLE}, + #{dealstatus,jdbcType=INTEGER}, #{dealcode,jdbcType=VARCHAR}) + + + insert into tb_pluss_merchant_income + + + id, + + + userId, + + + merchantCode, + + + merchantName, + + + storeId, + + + storeName, + + + dealType, + + + dealFee, + + + incomeFee, + + + createTime, + + + payTypeCode, + + + payTypeName, + + + memberCode, + + + memberName, + + + memberPic, + + + incomeType, + + + plateformProfit, + + + promoterProfit, + + + dealStatus, + + + dealCode, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{storeid,jdbcType=VARCHAR}, + + + #{storename,jdbcType=VARCHAR}, + + + #{dealtype,jdbcType=INTEGER}, + + + #{dealfee,jdbcType=DOUBLE}, + + + #{incomefee,jdbcType=DOUBLE}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{paytypecode,jdbcType=VARCHAR}, + + + #{paytypename,jdbcType=VARCHAR}, + + + #{membercode,jdbcType=VARCHAR}, + + + #{membername,jdbcType=VARCHAR}, + + + #{memberpic,jdbcType=VARCHAR}, + + + #{incometype,jdbcType=VARCHAR}, + + + #{plateformprofit,jdbcType=DOUBLE}, + + + #{promoterprofit,jdbcType=DOUBLE}, + + + #{dealstatus,jdbcType=INTEGER}, + + + #{dealcode,jdbcType=VARCHAR}, + + + + + update tb_pluss_merchant_income + + + userId = #{userid,jdbcType=INTEGER}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + storeId = #{storeid,jdbcType=VARCHAR}, + + + storeName = #{storename,jdbcType=VARCHAR}, + + + dealType = #{dealtype,jdbcType=INTEGER}, + + + dealFee = #{dealfee,jdbcType=DOUBLE}, + + + incomeFee = #{incomefee,jdbcType=DOUBLE}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + payTypeCode = #{paytypecode,jdbcType=VARCHAR}, + + + payTypeName = #{paytypename,jdbcType=VARCHAR}, + + + memberCode = #{membercode,jdbcType=VARCHAR}, + + + memberName = #{membername,jdbcType=VARCHAR}, + + + memberPic = #{memberpic,jdbcType=VARCHAR}, + + + incomeType = #{incometype,jdbcType=VARCHAR}, + + + plateformProfit = #{plateformprofit,jdbcType=DOUBLE}, + + + promoterProfit = #{promoterprofit,jdbcType=DOUBLE}, + + + dealStatus = #{dealstatus,jdbcType=INTEGER}, + + + dealCode = #{dealcode,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_income + set userId = #{userid,jdbcType=INTEGER}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + storeId = #{storeid,jdbcType=VARCHAR}, + storeName = #{storename,jdbcType=VARCHAR}, + dealType = #{dealtype,jdbcType=INTEGER}, + dealFee = #{dealfee,jdbcType=DOUBLE}, + incomeFee = #{incomefee,jdbcType=DOUBLE}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + payTypeCode = #{paytypecode,jdbcType=VARCHAR}, + payTypeName = #{paytypename,jdbcType=VARCHAR}, + memberCode = #{membercode,jdbcType=VARCHAR}, + memberName = #{membername,jdbcType=VARCHAR}, + memberPic = #{memberpic,jdbcType=VARCHAR}, + incomeType = #{incometype,jdbcType=VARCHAR}, + plateformProfit = #{plateformprofit,jdbcType=DOUBLE}, + promoterProfit = #{promoterprofit,jdbcType=DOUBLE}, + dealStatus = #{dealstatus,jdbcType=INTEGER}, + dealCode = #{dealcode,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantLklMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantLklMapper.xml new file mode 100644 index 0000000..65c7ba7 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantLklMapper.xml @@ -0,0 +1,40 @@ + + + + + + + + + + insert into tb_pluss_merchant_lkl (merchantId, merchantlkl, type + ) + values (#{merchantid,jdbcType=VARCHAR}, #{merchantlkl,jdbcType=VARCHAR}, #{type,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_merchant_lkl + + + merchantId, + + + merchantlkl, + + + type, + + + + + #{merchantid,jdbcType=VARCHAR}, + + + #{merchantlkl,jdbcType=VARCHAR}, + + + #{type,jdbcType=VARCHAR}, + + + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantMarketMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantMarketMapper.xml new file mode 100644 index 0000000..d851139 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantMarketMapper.xml @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + id, userId, userName, marketAmt, source, createTime, updateTime + + + + delete from tb_pluss_merchant_market + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_market (id, userId, userName, + marketAmt, source, createTime, + updateTime) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{username,jdbcType=VARCHAR}, + #{marketamt,jdbcType=DECIMAL}, #{source,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, + #{updatetime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_merchant_market + + + id, + + + userId, + + + userName, + + + marketAmt, + + + source, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{username,jdbcType=VARCHAR}, + + + #{marketamt,jdbcType=DECIMAL}, + + + #{source,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_merchant_market + + + userId = #{userid,jdbcType=INTEGER}, + + + userName = #{username,jdbcType=VARCHAR}, + + + marketAmt = #{marketamt,jdbcType=DECIMAL}, + + + source = #{source,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_market + set userId = #{userid,jdbcType=INTEGER}, + userName = #{username,jdbcType=VARCHAR}, + marketAmt = #{marketamt,jdbcType=DECIMAL}, + source = #{source,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantMemberCodeMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantMemberCodeMapper.xml new file mode 100644 index 0000000..cd516d4 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantMemberCodeMapper.xml @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + id, code, merchantCode, cardNo, startTime, endTime, createTime + + + + delete from tb_pluss_merchant_member_code + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_member_code (id, code, merchantCode, + cardNo, startTime, endTime, + createTime) + values (#{id,jdbcType=INTEGER}, #{code,jdbcType=VARCHAR}, #{merchantcode,jdbcType=VARCHAR}, + #{cardno,jdbcType=VARCHAR}, #{starttime,jdbcType=TIMESTAMP}, #{endtime,jdbcType=TIMESTAMP}, + #{createtime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_merchant_member_code + + + id, + + + code, + + + merchantCode, + + + cardNo, + + + startTime, + + + endTime, + + + createTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{code,jdbcType=VARCHAR}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{cardno,jdbcType=VARCHAR}, + + + #{starttime,jdbcType=TIMESTAMP}, + + + #{endtime,jdbcType=TIMESTAMP}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_merchant_member_code + + + code = #{code,jdbcType=VARCHAR}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + cardNo = #{cardno,jdbcType=VARCHAR}, + + + startTime = #{starttime,jdbcType=TIMESTAMP}, + + + endTime = #{endtime,jdbcType=TIMESTAMP}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_member_code + set code = #{code,jdbcType=VARCHAR}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + cardNo = #{cardno,jdbcType=VARCHAR}, + startTime = #{starttime,jdbcType=TIMESTAMP}, + endTime = #{endtime,jdbcType=TIMESTAMP}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantMenberComsumeMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantMenberComsumeMapper.xml new file mode 100644 index 0000000..c3a6b71 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantMenberComsumeMapper.xml @@ -0,0 +1,199 @@ + + + + + + + + + + + + + + + + + + + + + id, merchantCode, merchantName, storeId, storeName, orderNumber, createDt, logo, + memberCode, nickName, phone, comsumeMoney, giveMoney, payType + + + + delete from tb_pluss_merchant_menber_comsume + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_menber_comsume (id, merchantCode, merchantName, + storeId, storeName, orderNumber, + createDt, logo, memberCode, + nickName, phone, comsumeMoney, + giveMoney, payType) + values (#{id,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, #{merchantname,jdbcType=VARCHAR}, + #{storeid,jdbcType=VARCHAR}, #{storename,jdbcType=VARCHAR}, #{ordernumber,jdbcType=VARCHAR}, + #{createdt,jdbcType=TIMESTAMP}, #{logo,jdbcType=VARCHAR}, #{membercode,jdbcType=VARCHAR}, + #{nickname,jdbcType=VARCHAR}, #{phone,jdbcType=VARCHAR}, #{comsumemoney,jdbcType=DOUBLE}, + #{givemoney,jdbcType=DOUBLE}, #{paytype,jdbcType=INTEGER}) + + + insert into tb_pluss_merchant_menber_comsume + + + id, + + + merchantCode, + + + merchantName, + + + storeId, + + + storeName, + + + orderNumber, + + + createDt, + + + logo, + + + memberCode, + + + nickName, + + + phone, + + + comsumeMoney, + + + giveMoney, + + + payType, + + + + + #{id,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{storeid,jdbcType=VARCHAR}, + + + #{storename,jdbcType=VARCHAR}, + + + #{ordernumber,jdbcType=VARCHAR}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{logo,jdbcType=VARCHAR}, + + + #{membercode,jdbcType=VARCHAR}, + + + #{nickname,jdbcType=VARCHAR}, + + + #{phone,jdbcType=VARCHAR}, + + + #{comsumemoney,jdbcType=DOUBLE}, + + + #{givemoney,jdbcType=DOUBLE}, + + + #{paytype,jdbcType=INTEGER}, + + + + + update tb_pluss_merchant_menber_comsume + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + storeId = #{storeid,jdbcType=VARCHAR}, + + + storeName = #{storename,jdbcType=VARCHAR}, + + + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + logo = #{logo,jdbcType=VARCHAR}, + + + memberCode = #{membercode,jdbcType=VARCHAR}, + + + nickName = #{nickname,jdbcType=VARCHAR}, + + + phone = #{phone,jdbcType=VARCHAR}, + + + comsumeMoney = #{comsumemoney,jdbcType=DOUBLE}, + + + giveMoney = #{givemoney,jdbcType=DOUBLE}, + + + payType = #{paytype,jdbcType=INTEGER}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_menber_comsume + set merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + storeId = #{storeid,jdbcType=VARCHAR}, + storeName = #{storename,jdbcType=VARCHAR}, + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + logo = #{logo,jdbcType=VARCHAR}, + memberCode = #{membercode,jdbcType=VARCHAR}, + nickName = #{nickname,jdbcType=VARCHAR}, + phone = #{phone,jdbcType=VARCHAR}, + comsumeMoney = #{comsumemoney,jdbcType=DOUBLE}, + giveMoney = #{givemoney,jdbcType=DOUBLE}, + payType = #{paytype,jdbcType=INTEGER} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantMenberMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantMenberMapper.xml new file mode 100644 index 0000000..895e566 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantMenberMapper.xml @@ -0,0 +1,365 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, merchantCode, merchantName, storeId, storeName, status, createDt, logo, memberCode, + memberName, provinces, sex, nickName, phone, openid, alipayUserId, comsumeMoney, + profitMoney, orderNumber, totalRechargeFee, usableRechargeFee, totalGiveFee, usableGiveFee, + birthdayDt, cardNo, bindingUrl, appOpenId, unionId + + + + delete from tb_pluss_merchant_menber + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_menber (id, merchantCode, merchantName, + storeId, storeName, status, + createDt, logo, memberCode, + memberName, provinces, sex, + nickName, phone, openid, + alipayUserId, comsumeMoney, profitMoney, + orderNumber, totalRechargeFee, usableRechargeFee, + totalGiveFee, usableGiveFee, birthdayDt, + cardNo, bindingUrl, appOpenId, + unionId) + values (#{id,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, #{merchantname,jdbcType=VARCHAR}, + #{storeid,jdbcType=VARCHAR}, #{storename,jdbcType=VARCHAR}, #{status,jdbcType=INTEGER}, + #{createdt,jdbcType=TIMESTAMP}, #{logo,jdbcType=VARCHAR}, #{membercode,jdbcType=VARCHAR}, + #{membername,jdbcType=VARCHAR}, #{provinces,jdbcType=VARCHAR}, #{sex,jdbcType=VARCHAR}, + #{nickname,jdbcType=VARCHAR}, #{phone,jdbcType=VARCHAR}, #{openid,jdbcType=VARCHAR}, + #{alipayuserid,jdbcType=VARCHAR}, #{comsumemoney,jdbcType=DOUBLE}, #{profitmoney,jdbcType=DOUBLE}, + #{ordernumber,jdbcType=VARCHAR}, #{totalrechargefee,jdbcType=DOUBLE}, #{usablerechargefee,jdbcType=DOUBLE}, + #{totalgivefee,jdbcType=DOUBLE}, #{usablegivefee,jdbcType=DOUBLE}, #{birthdaydt,jdbcType=VARCHAR}, + #{cardno,jdbcType=VARCHAR}, #{bindingurl,jdbcType=VARCHAR}, #{appopenid,jdbcType=VARCHAR}, + #{unionid,jdbcType=VARCHAR}) + + + insert into tb_pluss_merchant_menber + + + id, + + + merchantCode, + + + merchantName, + + + storeId, + + + storeName, + + + status, + + + createDt, + + + logo, + + + memberCode, + + + memberName, + + + provinces, + + + sex, + + + nickName, + + + phone, + + + openid, + + + alipayUserId, + + + comsumeMoney, + + + profitMoney, + + + orderNumber, + + + totalRechargeFee, + + + usableRechargeFee, + + + totalGiveFee, + + + usableGiveFee, + + + birthdayDt, + + + cardNo, + + + bindingUrl, + + + appOpenId, + + + unionId, + + + + + #{id,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{storeid,jdbcType=VARCHAR}, + + + #{storename,jdbcType=VARCHAR}, + + + #{status,jdbcType=INTEGER}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{logo,jdbcType=VARCHAR}, + + + #{membercode,jdbcType=VARCHAR}, + + + #{membername,jdbcType=VARCHAR}, + + + #{provinces,jdbcType=VARCHAR}, + + + #{sex,jdbcType=VARCHAR}, + + + #{nickname,jdbcType=VARCHAR}, + + + #{phone,jdbcType=VARCHAR}, + + + #{openid,jdbcType=VARCHAR}, + + + #{alipayuserid,jdbcType=VARCHAR}, + + + #{comsumemoney,jdbcType=DOUBLE}, + + + #{profitmoney,jdbcType=DOUBLE}, + + + #{ordernumber,jdbcType=VARCHAR}, + + + #{totalrechargefee,jdbcType=DOUBLE}, + + + #{usablerechargefee,jdbcType=DOUBLE}, + + + #{totalgivefee,jdbcType=DOUBLE}, + + + #{usablegivefee,jdbcType=DOUBLE}, + + + #{birthdaydt,jdbcType=VARCHAR}, + + + #{cardno,jdbcType=VARCHAR}, + + + #{bindingurl,jdbcType=VARCHAR}, + + + #{appopenid,jdbcType=VARCHAR}, + + + #{unionid,jdbcType=VARCHAR}, + + + + + update tb_pluss_merchant_menber + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + storeId = #{storeid,jdbcType=VARCHAR}, + + + storeName = #{storename,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=INTEGER}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + logo = #{logo,jdbcType=VARCHAR}, + + + memberCode = #{membercode,jdbcType=VARCHAR}, + + + memberName = #{membername,jdbcType=VARCHAR}, + + + provinces = #{provinces,jdbcType=VARCHAR}, + + + sex = #{sex,jdbcType=VARCHAR}, + + + nickName = #{nickname,jdbcType=VARCHAR}, + + + phone = #{phone,jdbcType=VARCHAR}, + + + openid = #{openid,jdbcType=VARCHAR}, + + + alipayUserId = #{alipayuserid,jdbcType=VARCHAR}, + + + comsumeMoney = #{comsumemoney,jdbcType=DOUBLE}, + + + profitMoney = #{profitmoney,jdbcType=DOUBLE}, + + + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + + + totalRechargeFee = #{totalrechargefee,jdbcType=DOUBLE}, + + + usableRechargeFee = #{usablerechargefee,jdbcType=DOUBLE}, + + + totalGiveFee = #{totalgivefee,jdbcType=DOUBLE}, + + + usableGiveFee = #{usablegivefee,jdbcType=DOUBLE}, + + + birthdayDt = #{birthdaydt,jdbcType=VARCHAR}, + + + cardNo = #{cardno,jdbcType=VARCHAR}, + + + bindingUrl = #{bindingurl,jdbcType=VARCHAR}, + + + appOpenId = #{appopenid,jdbcType=VARCHAR}, + + + unionId = #{unionid,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_menber + set merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + storeId = #{storeid,jdbcType=VARCHAR}, + storeName = #{storename,jdbcType=VARCHAR}, + status = #{status,jdbcType=INTEGER}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + logo = #{logo,jdbcType=VARCHAR}, + memberCode = #{membercode,jdbcType=VARCHAR}, + memberName = #{membername,jdbcType=VARCHAR}, + provinces = #{provinces,jdbcType=VARCHAR}, + sex = #{sex,jdbcType=VARCHAR}, + nickName = #{nickname,jdbcType=VARCHAR}, + phone = #{phone,jdbcType=VARCHAR}, + openid = #{openid,jdbcType=VARCHAR}, + alipayUserId = #{alipayuserid,jdbcType=VARCHAR}, + comsumeMoney = #{comsumemoney,jdbcType=DOUBLE}, + profitMoney = #{profitmoney,jdbcType=DOUBLE}, + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + totalRechargeFee = #{totalrechargefee,jdbcType=DOUBLE}, + usableRechargeFee = #{usablerechargefee,jdbcType=DOUBLE}, + totalGiveFee = #{totalgivefee,jdbcType=DOUBLE}, + usableGiveFee = #{usablegivefee,jdbcType=DOUBLE}, + birthdayDt = #{birthdaydt,jdbcType=VARCHAR}, + cardNo = #{cardno,jdbcType=VARCHAR}, + bindingUrl = #{bindingurl,jdbcType=VARCHAR}, + appOpenId = #{appopenid,jdbcType=VARCHAR}, + unionId = #{unionid,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantMenberRechargeMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantMenberRechargeMapper.xml new file mode 100644 index 0000000..f0bbb97 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantMenberRechargeMapper.xml @@ -0,0 +1,199 @@ + + + + + + + + + + + + + + + + + + + + + id, merchantCode, merchantName, storeId, storeName, orderNumber, createDt, logo, + memberCode, nickName, phone, rechargeMoney, giveMoney, payType + + + + delete from tb_pluss_merchant_menber_recharge + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_menber_recharge (id, merchantCode, merchantName, + storeId, storeName, orderNumber, + createDt, logo, memberCode, + nickName, phone, rechargeMoney, + giveMoney, payType) + values (#{id,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, #{merchantname,jdbcType=VARCHAR}, + #{storeid,jdbcType=VARCHAR}, #{storename,jdbcType=VARCHAR}, #{ordernumber,jdbcType=VARCHAR}, + #{createdt,jdbcType=TIMESTAMP}, #{logo,jdbcType=VARCHAR}, #{membercode,jdbcType=VARCHAR}, + #{nickname,jdbcType=VARCHAR}, #{phone,jdbcType=VARCHAR}, #{rechargemoney,jdbcType=DOUBLE}, + #{givemoney,jdbcType=DOUBLE}, #{paytype,jdbcType=INTEGER}) + + + insert into tb_pluss_merchant_menber_recharge + + + id, + + + merchantCode, + + + merchantName, + + + storeId, + + + storeName, + + + orderNumber, + + + createDt, + + + logo, + + + memberCode, + + + nickName, + + + phone, + + + rechargeMoney, + + + giveMoney, + + + payType, + + + + + #{id,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{storeid,jdbcType=VARCHAR}, + + + #{storename,jdbcType=VARCHAR}, + + + #{ordernumber,jdbcType=VARCHAR}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{logo,jdbcType=VARCHAR}, + + + #{membercode,jdbcType=VARCHAR}, + + + #{nickname,jdbcType=VARCHAR}, + + + #{phone,jdbcType=VARCHAR}, + + + #{rechargemoney,jdbcType=DOUBLE}, + + + #{givemoney,jdbcType=DOUBLE}, + + + #{paytype,jdbcType=INTEGER}, + + + + + update tb_pluss_merchant_menber_recharge + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + storeId = #{storeid,jdbcType=VARCHAR}, + + + storeName = #{storename,jdbcType=VARCHAR}, + + + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + logo = #{logo,jdbcType=VARCHAR}, + + + memberCode = #{membercode,jdbcType=VARCHAR}, + + + nickName = #{nickname,jdbcType=VARCHAR}, + + + phone = #{phone,jdbcType=VARCHAR}, + + + rechargeMoney = #{rechargemoney,jdbcType=DOUBLE}, + + + giveMoney = #{givemoney,jdbcType=DOUBLE}, + + + payType = #{paytype,jdbcType=INTEGER}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_menber_recharge + set merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + storeId = #{storeid,jdbcType=VARCHAR}, + storeName = #{storename,jdbcType=VARCHAR}, + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + logo = #{logo,jdbcType=VARCHAR}, + memberCode = #{membercode,jdbcType=VARCHAR}, + nickName = #{nickname,jdbcType=VARCHAR}, + phone = #{phone,jdbcType=VARCHAR}, + rechargeMoney = #{rechargemoney,jdbcType=DOUBLE}, + giveMoney = #{givemoney,jdbcType=DOUBLE}, + payType = #{paytype,jdbcType=INTEGER} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantMoveRecordsMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantMoveRecordsMapper.xml new file mode 100644 index 0000000..2de17d1 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantMoveRecordsMapper.xml @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + id, merchantCode, merchantName, startTime, endTime, token, createTime, ip, payUserId, + payNum, paySource, orderNumber + + + + delete from tb_pluss_merchant_move_records + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_move_records (id, merchantCode, merchantName, + startTime, endTime, token, + createTime, ip, payUserId, + payNum, paySource, orderNumber + ) + values (#{id,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, #{merchantname,jdbcType=VARCHAR}, + #{starttime,jdbcType=TIMESTAMP}, #{endtime,jdbcType=TIMESTAMP}, #{token,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{ip,jdbcType=VARCHAR}, #{payuserid,jdbcType=VARCHAR}, + #{paynum,jdbcType=INTEGER}, #{paysource,jdbcType=INTEGER}, #{ordernumber,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_merchant_move_records + + + id, + + + merchantCode, + + + merchantName, + + + startTime, + + + endTime, + + + token, + + + createTime, + + + ip, + + + payUserId, + + + payNum, + + + paySource, + + + orderNumber, + + + + + #{id,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{starttime,jdbcType=TIMESTAMP}, + + + #{endtime,jdbcType=TIMESTAMP}, + + + #{token,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{ip,jdbcType=VARCHAR}, + + + #{payuserid,jdbcType=VARCHAR}, + + + #{paynum,jdbcType=INTEGER}, + + + #{paysource,jdbcType=INTEGER}, + + + #{ordernumber,jdbcType=VARCHAR}, + + + + + update tb_pluss_merchant_move_records + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + startTime = #{starttime,jdbcType=TIMESTAMP}, + + + endTime = #{endtime,jdbcType=TIMESTAMP}, + + + token = #{token,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + ip = #{ip,jdbcType=VARCHAR}, + + + payUserId = #{payuserid,jdbcType=VARCHAR}, + + + payNum = #{paynum,jdbcType=INTEGER}, + + + paySource = #{paysource,jdbcType=INTEGER}, + + + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_move_records + set merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + startTime = #{starttime,jdbcType=TIMESTAMP}, + endTime = #{endtime,jdbcType=TIMESTAMP}, + token = #{token,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + ip = #{ip,jdbcType=VARCHAR}, + payUserId = #{payuserid,jdbcType=VARCHAR}, + payNum = #{paynum,jdbcType=INTEGER}, + paySource = #{paysource,jdbcType=INTEGER}, + orderNumber = #{ordernumber,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantMoveSettingMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantMoveSettingMapper.xml new file mode 100644 index 0000000..6ba5bd9 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantMoveSettingMapper.xml @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + id, merchantCode, merchantName, qr_num, pay_num, aeskey, status, payOverTime, createTime + + + + delete from tb_pluss_merchant_move_setting + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_move_setting (id, merchantCode, merchantName, + qr_num, pay_num, aeskey, + status, payOverTime, createTime + ) + values (#{id,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, #{merchantname,jdbcType=VARCHAR}, + #{qrNum,jdbcType=INTEGER}, #{payNum,jdbcType=INTEGER}, #{aeskey,jdbcType=VARCHAR}, + #{status,jdbcType=INTEGER}, #{payovertime,jdbcType=INTEGER}, #{createtime,jdbcType=TIMESTAMP} + ) + + + insert into tb_pluss_merchant_move_setting + + + id, + + + merchantCode, + + + merchantName, + + + qr_num, + + + pay_num, + + + aeskey, + + + status, + + + payOverTime, + + + createTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{qrNum,jdbcType=INTEGER}, + + + #{payNum,jdbcType=INTEGER}, + + + #{aeskey,jdbcType=VARCHAR}, + + + #{status,jdbcType=INTEGER}, + + + #{payovertime,jdbcType=INTEGER}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_merchant_move_setting + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + qr_num = #{qrNum,jdbcType=INTEGER}, + + + pay_num = #{payNum,jdbcType=INTEGER}, + + + aeskey = #{aeskey,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=INTEGER}, + + + payOverTime = #{payovertime,jdbcType=INTEGER}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_move_setting + set merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + qr_num = #{qrNum,jdbcType=INTEGER}, + pay_num = #{payNum,jdbcType=INTEGER}, + aeskey = #{aeskey,jdbcType=VARCHAR}, + status = #{status,jdbcType=INTEGER}, + payOverTime = #{payovertime,jdbcType=INTEGER}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantOrderMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantOrderMapper.xml new file mode 100644 index 0000000..964f2b8 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantOrderMapper.xml @@ -0,0 +1,709 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, orderNumber, userImg, nickName, orderType, merchantCode, merchantName, payTypeCode, + payTypeName, thirdTransNo, storeId, storeName, consumeFee, transNo, memberCode, createDt, + transDt, staffCode, staffName, status, enterFee, aisleSwitch, remark, updateTime, + rate, marketAmt, mercOrderNo, mercNotifyUrl, mercUserId, mercNotifyStatus, mercRemark, + isRecharge, snNo, cashPlaceId, settlementType, fansShareMoney, profitShareMoney, + drType, channelRate, channelFee, mercFee, ip, ipAddress, mercReturnUrl, channelType, + createDate, updateDate, preAuthStatus, refundAmt, cashFee, thirdSendNo + + + payData + + + + delete from tb_pluss_merchant_order + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_order (id, orderNumber, userImg, + nickName, orderType, merchantCode, + merchantName, payTypeCode, payTypeName, + thirdTransNo, storeId, storeName, + consumeFee, transNo, memberCode, + createDt, transDt, staffCode, + staffName, status, enterFee, + aisleSwitch, remark, updateTime, + rate, marketAmt, mercOrderNo, + mercNotifyUrl, mercUserId, mercNotifyStatus, + mercRemark, isRecharge, snNo, + cashPlaceId, settlementType, fansShareMoney, + profitShareMoney, drType, channelRate, + channelFee, mercFee, ip, + ipAddress, mercReturnUrl, channelType, + createDate, updateDate, preAuthStatus, + refundAmt, cashFee, thirdSendNo, + payData) + values (#{id,jdbcType=INTEGER}, #{ordernumber,jdbcType=VARCHAR}, #{userimg,jdbcType=VARCHAR}, + #{nickname,jdbcType=VARCHAR}, #{ordertype,jdbcType=VARCHAR}, #{merchantcode,jdbcType=VARCHAR}, + #{merchantname,jdbcType=VARCHAR}, #{paytypecode,jdbcType=VARCHAR}, #{paytypename,jdbcType=VARCHAR}, + #{thirdtransno,jdbcType=VARCHAR}, #{storeid,jdbcType=VARCHAR}, #{storename,jdbcType=VARCHAR}, + #{consumefee,jdbcType=DOUBLE}, #{transno,jdbcType=VARCHAR}, #{membercode,jdbcType=VARCHAR}, + #{createdt,jdbcType=TIMESTAMP}, #{transdt,jdbcType=TIMESTAMP}, #{staffcode,jdbcType=VARCHAR}, + #{staffname,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, #{enterfee,jdbcType=DOUBLE}, + #{aisleswitch,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR}, #{updatetime,jdbcType=TIMESTAMP}, + #{rate,jdbcType=DECIMAL}, #{marketamt,jdbcType=DECIMAL}, #{mercorderno,jdbcType=VARCHAR}, + #{mercnotifyurl,jdbcType=VARCHAR}, #{mercuserid,jdbcType=VARCHAR}, #{mercnotifystatus,jdbcType=CHAR}, + #{mercremark,jdbcType=VARCHAR}, #{isrecharge,jdbcType=VARCHAR}, #{snno,jdbcType=VARCHAR}, + #{cashplaceid,jdbcType=INTEGER}, #{settlementtype,jdbcType=BIT}, #{fanssharemoney,jdbcType=DOUBLE}, + #{profitsharemoney,jdbcType=DOUBLE}, #{drtype,jdbcType=CHAR}, #{channelrate,jdbcType=DECIMAL}, + #{channelfee,jdbcType=DECIMAL}, #{mercfee,jdbcType=DECIMAL}, #{ip,jdbcType=VARCHAR}, + #{ipaddress,jdbcType=VARCHAR}, #{mercreturnurl,jdbcType=VARCHAR}, #{channeltype,jdbcType=VARCHAR}, + #{createdate,jdbcType=DATE}, #{updatedate,jdbcType=DATE}, #{preauthstatus,jdbcType=CHAR}, + #{refundamt,jdbcType=DECIMAL}, #{cashfee,jdbcType=DECIMAL}, #{thirdsendno,jdbcType=VARCHAR}, + #{paydata,jdbcType=LONGVARCHAR}) + + + insert into tb_pluss_merchant_order + + + id, + + + orderNumber, + + + userImg, + + + nickName, + + + orderType, + + + merchantCode, + + + merchantName, + + + payTypeCode, + + + payTypeName, + + + thirdTransNo, + + + storeId, + + + storeName, + + + consumeFee, + + + transNo, + + + memberCode, + + + createDt, + + + transDt, + + + staffCode, + + + staffName, + + + status, + + + enterFee, + + + aisleSwitch, + + + remark, + + + updateTime, + + + rate, + + + marketAmt, + + + mercOrderNo, + + + mercNotifyUrl, + + + mercUserId, + + + mercNotifyStatus, + + + mercRemark, + + + isRecharge, + + + snNo, + + + cashPlaceId, + + + settlementType, + + + fansShareMoney, + + + profitShareMoney, + + + drType, + + + channelRate, + + + channelFee, + + + mercFee, + + + ip, + + + ipAddress, + + + mercReturnUrl, + + + channelType, + + + createDate, + + + updateDate, + + + preAuthStatus, + + + refundAmt, + + + cashFee, + + + thirdSendNo, + + + payData, + + + + + #{id,jdbcType=INTEGER}, + + + #{ordernumber,jdbcType=VARCHAR}, + + + #{userimg,jdbcType=VARCHAR}, + + + #{nickname,jdbcType=VARCHAR}, + + + #{ordertype,jdbcType=VARCHAR}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{paytypecode,jdbcType=VARCHAR}, + + + #{paytypename,jdbcType=VARCHAR}, + + + #{thirdtransno,jdbcType=VARCHAR}, + + + #{storeid,jdbcType=VARCHAR}, + + + #{storename,jdbcType=VARCHAR}, + + + #{consumefee,jdbcType=DOUBLE}, + + + #{transno,jdbcType=VARCHAR}, + + + #{membercode,jdbcType=VARCHAR}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{transdt,jdbcType=TIMESTAMP}, + + + #{staffcode,jdbcType=VARCHAR}, + + + #{staffname,jdbcType=VARCHAR}, + + + #{status,jdbcType=VARCHAR}, + + + #{enterfee,jdbcType=DOUBLE}, + + + #{aisleswitch,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{rate,jdbcType=DECIMAL}, + + + #{marketamt,jdbcType=DECIMAL}, + + + #{mercorderno,jdbcType=VARCHAR}, + + + #{mercnotifyurl,jdbcType=VARCHAR}, + + + #{mercuserid,jdbcType=VARCHAR}, + + + #{mercnotifystatus,jdbcType=CHAR}, + + + #{mercremark,jdbcType=VARCHAR}, + + + #{isrecharge,jdbcType=VARCHAR}, + + + #{snno,jdbcType=VARCHAR}, + + + #{cashplaceid,jdbcType=INTEGER}, + + + #{settlementtype,jdbcType=BIT}, + + + #{fanssharemoney,jdbcType=DOUBLE}, + + + #{profitsharemoney,jdbcType=DOUBLE}, + + + #{drtype,jdbcType=CHAR}, + + + #{channelrate,jdbcType=DECIMAL}, + + + #{channelfee,jdbcType=DECIMAL}, + + + #{mercfee,jdbcType=DECIMAL}, + + + #{ip,jdbcType=VARCHAR}, + + + #{ipaddress,jdbcType=VARCHAR}, + + + #{mercreturnurl,jdbcType=VARCHAR}, + + + #{channeltype,jdbcType=VARCHAR}, + + + #{createdate,jdbcType=DATE}, + + + #{updatedate,jdbcType=DATE}, + + + #{preauthstatus,jdbcType=CHAR}, + + + #{refundamt,jdbcType=DECIMAL}, + + + #{cashfee,jdbcType=DECIMAL}, + + + #{thirdsendno,jdbcType=VARCHAR}, + + + #{paydata,jdbcType=LONGVARCHAR}, + + + + + update tb_pluss_merchant_order + + + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + + + userImg = #{userimg,jdbcType=VARCHAR}, + + + nickName = #{nickname,jdbcType=VARCHAR}, + + + orderType = #{ordertype,jdbcType=VARCHAR}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + payTypeCode = #{paytypecode,jdbcType=VARCHAR}, + + + payTypeName = #{paytypename,jdbcType=VARCHAR}, + + + thirdTransNo = #{thirdtransno,jdbcType=VARCHAR}, + + + storeId = #{storeid,jdbcType=VARCHAR}, + + + storeName = #{storename,jdbcType=VARCHAR}, + + + consumeFee = #{consumefee,jdbcType=DOUBLE}, + + + transNo = #{transno,jdbcType=VARCHAR}, + + + memberCode = #{membercode,jdbcType=VARCHAR}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + transDt = #{transdt,jdbcType=TIMESTAMP}, + + + staffCode = #{staffcode,jdbcType=VARCHAR}, + + + staffName = #{staffname,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=VARCHAR}, + + + enterFee = #{enterfee,jdbcType=DOUBLE}, + + + aisleSwitch = #{aisleswitch,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + rate = #{rate,jdbcType=DECIMAL}, + + + marketAmt = #{marketamt,jdbcType=DECIMAL}, + + + mercOrderNo = #{mercorderno,jdbcType=VARCHAR}, + + + mercNotifyUrl = #{mercnotifyurl,jdbcType=VARCHAR}, + + + mercUserId = #{mercuserid,jdbcType=VARCHAR}, + + + mercNotifyStatus = #{mercnotifystatus,jdbcType=CHAR}, + + + mercRemark = #{mercremark,jdbcType=VARCHAR}, + + + isRecharge = #{isrecharge,jdbcType=VARCHAR}, + + + snNo = #{snno,jdbcType=VARCHAR}, + + + cashPlaceId = #{cashplaceid,jdbcType=INTEGER}, + + + settlementType = #{settlementtype,jdbcType=BIT}, + + + fansShareMoney = #{fanssharemoney,jdbcType=DOUBLE}, + + + profitShareMoney = #{profitsharemoney,jdbcType=DOUBLE}, + + + drType = #{drtype,jdbcType=CHAR}, + + + channelRate = #{channelrate,jdbcType=DECIMAL}, + + + channelFee = #{channelfee,jdbcType=DECIMAL}, + + + mercFee = #{mercfee,jdbcType=DECIMAL}, + + + ip = #{ip,jdbcType=VARCHAR}, + + + ipAddress = #{ipaddress,jdbcType=VARCHAR}, + + + mercReturnUrl = #{mercreturnurl,jdbcType=VARCHAR}, + + + channelType = #{channeltype,jdbcType=VARCHAR}, + + + createDate = #{createdate,jdbcType=DATE}, + + + updateDate = #{updatedate,jdbcType=DATE}, + + + preAuthStatus = #{preauthstatus,jdbcType=CHAR}, + + + refundAmt = #{refundamt,jdbcType=DECIMAL}, + + + cashFee = #{cashfee,jdbcType=DECIMAL}, + + + thirdSendNo = #{thirdsendno,jdbcType=VARCHAR}, + + + payData = #{paydata,jdbcType=LONGVARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_order + set orderNumber = #{ordernumber,jdbcType=VARCHAR}, + userImg = #{userimg,jdbcType=VARCHAR}, + nickName = #{nickname,jdbcType=VARCHAR}, + orderType = #{ordertype,jdbcType=VARCHAR}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + payTypeCode = #{paytypecode,jdbcType=VARCHAR}, + payTypeName = #{paytypename,jdbcType=VARCHAR}, + thirdTransNo = #{thirdtransno,jdbcType=VARCHAR}, + storeId = #{storeid,jdbcType=VARCHAR}, + storeName = #{storename,jdbcType=VARCHAR}, + consumeFee = #{consumefee,jdbcType=DOUBLE}, + transNo = #{transno,jdbcType=VARCHAR}, + memberCode = #{membercode,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + transDt = #{transdt,jdbcType=TIMESTAMP}, + staffCode = #{staffcode,jdbcType=VARCHAR}, + staffName = #{staffname,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + enterFee = #{enterfee,jdbcType=DOUBLE}, + aisleSwitch = #{aisleswitch,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + rate = #{rate,jdbcType=DECIMAL}, + marketAmt = #{marketamt,jdbcType=DECIMAL}, + mercOrderNo = #{mercorderno,jdbcType=VARCHAR}, + mercNotifyUrl = #{mercnotifyurl,jdbcType=VARCHAR}, + mercUserId = #{mercuserid,jdbcType=VARCHAR}, + mercNotifyStatus = #{mercnotifystatus,jdbcType=CHAR}, + mercRemark = #{mercremark,jdbcType=VARCHAR}, + isRecharge = #{isrecharge,jdbcType=VARCHAR}, + snNo = #{snno,jdbcType=VARCHAR}, + cashPlaceId = #{cashplaceid,jdbcType=INTEGER}, + settlementType = #{settlementtype,jdbcType=BIT}, + fansShareMoney = #{fanssharemoney,jdbcType=DOUBLE}, + profitShareMoney = #{profitsharemoney,jdbcType=DOUBLE}, + drType = #{drtype,jdbcType=CHAR}, + channelRate = #{channelrate,jdbcType=DECIMAL}, + channelFee = #{channelfee,jdbcType=DECIMAL}, + mercFee = #{mercfee,jdbcType=DECIMAL}, + ip = #{ip,jdbcType=VARCHAR}, + ipAddress = #{ipaddress,jdbcType=VARCHAR}, + mercReturnUrl = #{mercreturnurl,jdbcType=VARCHAR}, + channelType = #{channeltype,jdbcType=VARCHAR}, + createDate = #{createdate,jdbcType=DATE}, + updateDate = #{updatedate,jdbcType=DATE}, + preAuthStatus = #{preauthstatus,jdbcType=CHAR}, + refundAmt = #{refundamt,jdbcType=DECIMAL}, + cashFee = #{cashfee,jdbcType=DECIMAL}, + thirdSendNo = #{thirdsendno,jdbcType=VARCHAR}, + payData = #{paydata,jdbcType=LONGVARCHAR} + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_order + set orderNumber = #{ordernumber,jdbcType=VARCHAR}, + userImg = #{userimg,jdbcType=VARCHAR}, + nickName = #{nickname,jdbcType=VARCHAR}, + orderType = #{ordertype,jdbcType=VARCHAR}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + payTypeCode = #{paytypecode,jdbcType=VARCHAR}, + payTypeName = #{paytypename,jdbcType=VARCHAR}, + thirdTransNo = #{thirdtransno,jdbcType=VARCHAR}, + storeId = #{storeid,jdbcType=VARCHAR}, + storeName = #{storename,jdbcType=VARCHAR}, + consumeFee = #{consumefee,jdbcType=DOUBLE}, + transNo = #{transno,jdbcType=VARCHAR}, + memberCode = #{membercode,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + transDt = #{transdt,jdbcType=TIMESTAMP}, + staffCode = #{staffcode,jdbcType=VARCHAR}, + staffName = #{staffname,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + enterFee = #{enterfee,jdbcType=DOUBLE}, + aisleSwitch = #{aisleswitch,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + rate = #{rate,jdbcType=DECIMAL}, + marketAmt = #{marketamt,jdbcType=DECIMAL}, + mercOrderNo = #{mercorderno,jdbcType=VARCHAR}, + mercNotifyUrl = #{mercnotifyurl,jdbcType=VARCHAR}, + mercUserId = #{mercuserid,jdbcType=VARCHAR}, + mercNotifyStatus = #{mercnotifystatus,jdbcType=CHAR}, + mercRemark = #{mercremark,jdbcType=VARCHAR}, + isRecharge = #{isrecharge,jdbcType=VARCHAR}, + snNo = #{snno,jdbcType=VARCHAR}, + cashPlaceId = #{cashplaceid,jdbcType=INTEGER}, + settlementType = #{settlementtype,jdbcType=BIT}, + fansShareMoney = #{fanssharemoney,jdbcType=DOUBLE}, + profitShareMoney = #{profitsharemoney,jdbcType=DOUBLE}, + drType = #{drtype,jdbcType=CHAR}, + channelRate = #{channelrate,jdbcType=DECIMAL}, + channelFee = #{channelfee,jdbcType=DECIMAL}, + mercFee = #{mercfee,jdbcType=DECIMAL}, + ip = #{ip,jdbcType=VARCHAR}, + ipAddress = #{ipaddress,jdbcType=VARCHAR}, + mercReturnUrl = #{mercreturnurl,jdbcType=VARCHAR}, + channelType = #{channeltype,jdbcType=VARCHAR}, + createDate = #{createdate,jdbcType=DATE}, + updateDate = #{updatedate,jdbcType=DATE}, + preAuthStatus = #{preauthstatus,jdbcType=CHAR}, + refundAmt = #{refundamt,jdbcType=DECIMAL}, + cashFee = #{cashfee,jdbcType=DECIMAL}, + thirdSendNo = #{thirdsendno,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantOrderOldLsMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantOrderOldLsMapper.xml new file mode 100644 index 0000000..773bef9 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantOrderOldLsMapper.xml @@ -0,0 +1,671 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, orderNumber, userImg, nickName, orderType, merchantCode, merchantName, payTypeCode, + payTypeName, thirdTransNo, storeId, storeName, consumeFee, transNo, memberCode, createDt, + transDt, staffCode, staffName, status, enterFee, aisleSwitch, remark, updateTime, + rate, marketAmt, mercOrderNo, mercNotifyUrl, mercUserId, mercNotifyStatus, mercRemark, + isRecharge, snNo, cashPlaceId, settlementType, fansShareMoney, profitShareMoney, + drType, channelRate, channelFee, mercFee, ip, ipAddress, mercReturnUrl, channelType, + createDate, preAuthStatus, refundAmt + + + payData + + + + delete from tb_pluss_merchant_order_old_ls + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_order_old_ls (id, orderNumber, userImg, + nickName, orderType, merchantCode, + merchantName, payTypeCode, payTypeName, + thirdTransNo, storeId, storeName, + consumeFee, transNo, memberCode, + createDt, transDt, staffCode, + staffName, status, enterFee, + aisleSwitch, remark, updateTime, + rate, marketAmt, mercOrderNo, + mercNotifyUrl, mercUserId, mercNotifyStatus, + mercRemark, isRecharge, snNo, + cashPlaceId, settlementType, fansShareMoney, + profitShareMoney, drType, channelRate, + channelFee, mercFee, ip, + ipAddress, mercReturnUrl, channelType, + createDate, preAuthStatus, refundAmt, + payData) + values (#{id,jdbcType=INTEGER}, #{ordernumber,jdbcType=VARCHAR}, #{userimg,jdbcType=VARCHAR}, + #{nickname,jdbcType=VARCHAR}, #{ordertype,jdbcType=VARCHAR}, #{merchantcode,jdbcType=VARCHAR}, + #{merchantname,jdbcType=VARCHAR}, #{paytypecode,jdbcType=VARCHAR}, #{paytypename,jdbcType=VARCHAR}, + #{thirdtransno,jdbcType=VARCHAR}, #{storeid,jdbcType=VARCHAR}, #{storename,jdbcType=VARCHAR}, + #{consumefee,jdbcType=DOUBLE}, #{transno,jdbcType=VARCHAR}, #{membercode,jdbcType=VARCHAR}, + #{createdt,jdbcType=TIMESTAMP}, #{transdt,jdbcType=TIMESTAMP}, #{staffcode,jdbcType=VARCHAR}, + #{staffname,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, #{enterfee,jdbcType=DOUBLE}, + #{aisleswitch,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR}, #{updatetime,jdbcType=TIMESTAMP}, + #{rate,jdbcType=DECIMAL}, #{marketamt,jdbcType=DECIMAL}, #{mercorderno,jdbcType=VARCHAR}, + #{mercnotifyurl,jdbcType=VARCHAR}, #{mercuserid,jdbcType=VARCHAR}, #{mercnotifystatus,jdbcType=CHAR}, + #{mercremark,jdbcType=VARCHAR}, #{isrecharge,jdbcType=VARCHAR}, #{snno,jdbcType=VARCHAR}, + #{cashplaceid,jdbcType=INTEGER}, #{settlementtype,jdbcType=BIT}, #{fanssharemoney,jdbcType=DOUBLE}, + #{profitsharemoney,jdbcType=DOUBLE}, #{drtype,jdbcType=CHAR}, #{channelrate,jdbcType=DECIMAL}, + #{channelfee,jdbcType=DECIMAL}, #{mercfee,jdbcType=DECIMAL}, #{ip,jdbcType=VARCHAR}, + #{ipaddress,jdbcType=VARCHAR}, #{mercreturnurl,jdbcType=VARCHAR}, #{channeltype,jdbcType=VARCHAR}, + #{createdate,jdbcType=DATE}, #{preauthstatus,jdbcType=CHAR}, #{refundamt,jdbcType=DECIMAL}, + #{paydata,jdbcType=LONGVARCHAR}) + + + insert into tb_pluss_merchant_order_old_ls + + + id, + + + orderNumber, + + + userImg, + + + nickName, + + + orderType, + + + merchantCode, + + + merchantName, + + + payTypeCode, + + + payTypeName, + + + thirdTransNo, + + + storeId, + + + storeName, + + + consumeFee, + + + transNo, + + + memberCode, + + + createDt, + + + transDt, + + + staffCode, + + + staffName, + + + status, + + + enterFee, + + + aisleSwitch, + + + remark, + + + updateTime, + + + rate, + + + marketAmt, + + + mercOrderNo, + + + mercNotifyUrl, + + + mercUserId, + + + mercNotifyStatus, + + + mercRemark, + + + isRecharge, + + + snNo, + + + cashPlaceId, + + + settlementType, + + + fansShareMoney, + + + profitShareMoney, + + + drType, + + + channelRate, + + + channelFee, + + + mercFee, + + + ip, + + + ipAddress, + + + mercReturnUrl, + + + channelType, + + + createDate, + + + preAuthStatus, + + + refundAmt, + + + payData, + + + + + #{id,jdbcType=INTEGER}, + + + #{ordernumber,jdbcType=VARCHAR}, + + + #{userimg,jdbcType=VARCHAR}, + + + #{nickname,jdbcType=VARCHAR}, + + + #{ordertype,jdbcType=VARCHAR}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{paytypecode,jdbcType=VARCHAR}, + + + #{paytypename,jdbcType=VARCHAR}, + + + #{thirdtransno,jdbcType=VARCHAR}, + + + #{storeid,jdbcType=VARCHAR}, + + + #{storename,jdbcType=VARCHAR}, + + + #{consumefee,jdbcType=DOUBLE}, + + + #{transno,jdbcType=VARCHAR}, + + + #{membercode,jdbcType=VARCHAR}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{transdt,jdbcType=TIMESTAMP}, + + + #{staffcode,jdbcType=VARCHAR}, + + + #{staffname,jdbcType=VARCHAR}, + + + #{status,jdbcType=VARCHAR}, + + + #{enterfee,jdbcType=DOUBLE}, + + + #{aisleswitch,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{rate,jdbcType=DECIMAL}, + + + #{marketamt,jdbcType=DECIMAL}, + + + #{mercorderno,jdbcType=VARCHAR}, + + + #{mercnotifyurl,jdbcType=VARCHAR}, + + + #{mercuserid,jdbcType=VARCHAR}, + + + #{mercnotifystatus,jdbcType=CHAR}, + + + #{mercremark,jdbcType=VARCHAR}, + + + #{isrecharge,jdbcType=VARCHAR}, + + + #{snno,jdbcType=VARCHAR}, + + + #{cashplaceid,jdbcType=INTEGER}, + + + #{settlementtype,jdbcType=BIT}, + + + #{fanssharemoney,jdbcType=DOUBLE}, + + + #{profitsharemoney,jdbcType=DOUBLE}, + + + #{drtype,jdbcType=CHAR}, + + + #{channelrate,jdbcType=DECIMAL}, + + + #{channelfee,jdbcType=DECIMAL}, + + + #{mercfee,jdbcType=DECIMAL}, + + + #{ip,jdbcType=VARCHAR}, + + + #{ipaddress,jdbcType=VARCHAR}, + + + #{mercreturnurl,jdbcType=VARCHAR}, + + + #{channeltype,jdbcType=VARCHAR}, + + + #{createdate,jdbcType=DATE}, + + + #{preauthstatus,jdbcType=CHAR}, + + + #{refundamt,jdbcType=DECIMAL}, + + + #{paydata,jdbcType=LONGVARCHAR}, + + + + + update tb_pluss_merchant_order_old_ls + + + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + + + userImg = #{userimg,jdbcType=VARCHAR}, + + + nickName = #{nickname,jdbcType=VARCHAR}, + + + orderType = #{ordertype,jdbcType=VARCHAR}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + payTypeCode = #{paytypecode,jdbcType=VARCHAR}, + + + payTypeName = #{paytypename,jdbcType=VARCHAR}, + + + thirdTransNo = #{thirdtransno,jdbcType=VARCHAR}, + + + storeId = #{storeid,jdbcType=VARCHAR}, + + + storeName = #{storename,jdbcType=VARCHAR}, + + + consumeFee = #{consumefee,jdbcType=DOUBLE}, + + + transNo = #{transno,jdbcType=VARCHAR}, + + + memberCode = #{membercode,jdbcType=VARCHAR}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + transDt = #{transdt,jdbcType=TIMESTAMP}, + + + staffCode = #{staffcode,jdbcType=VARCHAR}, + + + staffName = #{staffname,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=VARCHAR}, + + + enterFee = #{enterfee,jdbcType=DOUBLE}, + + + aisleSwitch = #{aisleswitch,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + rate = #{rate,jdbcType=DECIMAL}, + + + marketAmt = #{marketamt,jdbcType=DECIMAL}, + + + mercOrderNo = #{mercorderno,jdbcType=VARCHAR}, + + + mercNotifyUrl = #{mercnotifyurl,jdbcType=VARCHAR}, + + + mercUserId = #{mercuserid,jdbcType=VARCHAR}, + + + mercNotifyStatus = #{mercnotifystatus,jdbcType=CHAR}, + + + mercRemark = #{mercremark,jdbcType=VARCHAR}, + + + isRecharge = #{isrecharge,jdbcType=VARCHAR}, + + + snNo = #{snno,jdbcType=VARCHAR}, + + + cashPlaceId = #{cashplaceid,jdbcType=INTEGER}, + + + settlementType = #{settlementtype,jdbcType=BIT}, + + + fansShareMoney = #{fanssharemoney,jdbcType=DOUBLE}, + + + profitShareMoney = #{profitsharemoney,jdbcType=DOUBLE}, + + + drType = #{drtype,jdbcType=CHAR}, + + + channelRate = #{channelrate,jdbcType=DECIMAL}, + + + channelFee = #{channelfee,jdbcType=DECIMAL}, + + + mercFee = #{mercfee,jdbcType=DECIMAL}, + + + ip = #{ip,jdbcType=VARCHAR}, + + + ipAddress = #{ipaddress,jdbcType=VARCHAR}, + + + mercReturnUrl = #{mercreturnurl,jdbcType=VARCHAR}, + + + channelType = #{channeltype,jdbcType=VARCHAR}, + + + createDate = #{createdate,jdbcType=DATE}, + + + preAuthStatus = #{preauthstatus,jdbcType=CHAR}, + + + refundAmt = #{refundamt,jdbcType=DECIMAL}, + + + payData = #{paydata,jdbcType=LONGVARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_order_old_ls + set orderNumber = #{ordernumber,jdbcType=VARCHAR}, + userImg = #{userimg,jdbcType=VARCHAR}, + nickName = #{nickname,jdbcType=VARCHAR}, + orderType = #{ordertype,jdbcType=VARCHAR}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + payTypeCode = #{paytypecode,jdbcType=VARCHAR}, + payTypeName = #{paytypename,jdbcType=VARCHAR}, + thirdTransNo = #{thirdtransno,jdbcType=VARCHAR}, + storeId = #{storeid,jdbcType=VARCHAR}, + storeName = #{storename,jdbcType=VARCHAR}, + consumeFee = #{consumefee,jdbcType=DOUBLE}, + transNo = #{transno,jdbcType=VARCHAR}, + memberCode = #{membercode,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + transDt = #{transdt,jdbcType=TIMESTAMP}, + staffCode = #{staffcode,jdbcType=VARCHAR}, + staffName = #{staffname,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + enterFee = #{enterfee,jdbcType=DOUBLE}, + aisleSwitch = #{aisleswitch,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + rate = #{rate,jdbcType=DECIMAL}, + marketAmt = #{marketamt,jdbcType=DECIMAL}, + mercOrderNo = #{mercorderno,jdbcType=VARCHAR}, + mercNotifyUrl = #{mercnotifyurl,jdbcType=VARCHAR}, + mercUserId = #{mercuserid,jdbcType=VARCHAR}, + mercNotifyStatus = #{mercnotifystatus,jdbcType=CHAR}, + mercRemark = #{mercremark,jdbcType=VARCHAR}, + isRecharge = #{isrecharge,jdbcType=VARCHAR}, + snNo = #{snno,jdbcType=VARCHAR}, + cashPlaceId = #{cashplaceid,jdbcType=INTEGER}, + settlementType = #{settlementtype,jdbcType=BIT}, + fansShareMoney = #{fanssharemoney,jdbcType=DOUBLE}, + profitShareMoney = #{profitsharemoney,jdbcType=DOUBLE}, + drType = #{drtype,jdbcType=CHAR}, + channelRate = #{channelrate,jdbcType=DECIMAL}, + channelFee = #{channelfee,jdbcType=DECIMAL}, + mercFee = #{mercfee,jdbcType=DECIMAL}, + ip = #{ip,jdbcType=VARCHAR}, + ipAddress = #{ipaddress,jdbcType=VARCHAR}, + mercReturnUrl = #{mercreturnurl,jdbcType=VARCHAR}, + channelType = #{channeltype,jdbcType=VARCHAR}, + createDate = #{createdate,jdbcType=DATE}, + preAuthStatus = #{preauthstatus,jdbcType=CHAR}, + refundAmt = #{refundamt,jdbcType=DECIMAL}, + payData = #{paydata,jdbcType=LONGVARCHAR} + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_order_old_ls + set orderNumber = #{ordernumber,jdbcType=VARCHAR}, + userImg = #{userimg,jdbcType=VARCHAR}, + nickName = #{nickname,jdbcType=VARCHAR}, + orderType = #{ordertype,jdbcType=VARCHAR}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + payTypeCode = #{paytypecode,jdbcType=VARCHAR}, + payTypeName = #{paytypename,jdbcType=VARCHAR}, + thirdTransNo = #{thirdtransno,jdbcType=VARCHAR}, + storeId = #{storeid,jdbcType=VARCHAR}, + storeName = #{storename,jdbcType=VARCHAR}, + consumeFee = #{consumefee,jdbcType=DOUBLE}, + transNo = #{transno,jdbcType=VARCHAR}, + memberCode = #{membercode,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + transDt = #{transdt,jdbcType=TIMESTAMP}, + staffCode = #{staffcode,jdbcType=VARCHAR}, + staffName = #{staffname,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + enterFee = #{enterfee,jdbcType=DOUBLE}, + aisleSwitch = #{aisleswitch,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + rate = #{rate,jdbcType=DECIMAL}, + marketAmt = #{marketamt,jdbcType=DECIMAL}, + mercOrderNo = #{mercorderno,jdbcType=VARCHAR}, + mercNotifyUrl = #{mercnotifyurl,jdbcType=VARCHAR}, + mercUserId = #{mercuserid,jdbcType=VARCHAR}, + mercNotifyStatus = #{mercnotifystatus,jdbcType=CHAR}, + mercRemark = #{mercremark,jdbcType=VARCHAR}, + isRecharge = #{isrecharge,jdbcType=VARCHAR}, + snNo = #{snno,jdbcType=VARCHAR}, + cashPlaceId = #{cashplaceid,jdbcType=INTEGER}, + settlementType = #{settlementtype,jdbcType=BIT}, + fansShareMoney = #{fanssharemoney,jdbcType=DOUBLE}, + profitShareMoney = #{profitsharemoney,jdbcType=DOUBLE}, + drType = #{drtype,jdbcType=CHAR}, + channelRate = #{channelrate,jdbcType=DECIMAL}, + channelFee = #{channelfee,jdbcType=DECIMAL}, + mercFee = #{mercfee,jdbcType=DECIMAL}, + ip = #{ip,jdbcType=VARCHAR}, + ipAddress = #{ipaddress,jdbcType=VARCHAR}, + mercReturnUrl = #{mercreturnurl,jdbcType=VARCHAR}, + channelType = #{channeltype,jdbcType=VARCHAR}, + createDate = #{createdate,jdbcType=DATE}, + preAuthStatus = #{preauthstatus,jdbcType=CHAR}, + refundAmt = #{refundamt,jdbcType=DECIMAL} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantOrderSplitDetailMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantOrderSplitDetailMapper.xml new file mode 100644 index 0000000..078a3ca --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantOrderSplitDetailMapper.xml @@ -0,0 +1,235 @@ + + + + + + + + + + + + + + + + + + + + + + + + id, merchantCode, merchantId, merchantName, orderNumber, orderAmt, divRatio, divAmt, + finalAmt, remark, createTime, isChargeFee, status, refundAmt, state, channelSendSn, + channelRecvSn + + + + delete from tb_pluss_merchant_order_split_detail + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_order_split_detail (id, merchantCode, merchantId, + merchantName, orderNumber, orderAmt, + divRatio, divAmt, finalAmt, + remark, createTime, isChargeFee, + status, refundAmt, state, + channelSendSn, channelRecvSn) + values (#{id,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, #{merchantid,jdbcType=VARCHAR}, + #{merchantname,jdbcType=VARCHAR}, #{ordernumber,jdbcType=VARCHAR}, #{orderamt,jdbcType=DECIMAL}, + #{divratio,jdbcType=DECIMAL}, #{divamt,jdbcType=DECIMAL}, #{finalamt,jdbcType=DECIMAL}, + #{remark,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{ischargefee,jdbcType=VARCHAR}, + #{status,jdbcType=TINYINT}, #{refundamt,jdbcType=DECIMAL}, #{state,jdbcType=VARCHAR}, + #{channelsendsn,jdbcType=VARCHAR}, #{channelrecvsn,jdbcType=VARCHAR}) + + + insert into tb_pluss_merchant_order_split_detail + + + id, + + + merchantCode, + + + merchantId, + + + merchantName, + + + orderNumber, + + + orderAmt, + + + divRatio, + + + divAmt, + + + finalAmt, + + + remark, + + + createTime, + + + isChargeFee, + + + status, + + + refundAmt, + + + state, + + + channelSendSn, + + + channelRecvSn, + + + + + #{id,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantid,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{ordernumber,jdbcType=VARCHAR}, + + + #{orderamt,jdbcType=DECIMAL}, + + + #{divratio,jdbcType=DECIMAL}, + + + #{divamt,jdbcType=DECIMAL}, + + + #{finalamt,jdbcType=DECIMAL}, + + + #{remark,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{ischargefee,jdbcType=VARCHAR}, + + + #{status,jdbcType=TINYINT}, + + + #{refundamt,jdbcType=DECIMAL}, + + + #{state,jdbcType=VARCHAR}, + + + #{channelsendsn,jdbcType=VARCHAR}, + + + #{channelrecvsn,jdbcType=VARCHAR}, + + + + + update tb_pluss_merchant_order_split_detail + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantId = #{merchantid,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + + + orderAmt = #{orderamt,jdbcType=DECIMAL}, + + + divRatio = #{divratio,jdbcType=DECIMAL}, + + + divAmt = #{divamt,jdbcType=DECIMAL}, + + + finalAmt = #{finalamt,jdbcType=DECIMAL}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + isChargeFee = #{ischargefee,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=TINYINT}, + + + refundAmt = #{refundamt,jdbcType=DECIMAL}, + + + state = #{state,jdbcType=VARCHAR}, + + + channelSendSn = #{channelsendsn,jdbcType=VARCHAR}, + + + channelRecvSn = #{channelrecvsn,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_order_split_detail + set merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantId = #{merchantid,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + orderAmt = #{orderamt,jdbcType=DECIMAL}, + divRatio = #{divratio,jdbcType=DECIMAL}, + divAmt = #{divamt,jdbcType=DECIMAL}, + finalAmt = #{finalamt,jdbcType=DECIMAL}, + remark = #{remark,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + isChargeFee = #{ischargefee,jdbcType=VARCHAR}, + status = #{status,jdbcType=TINYINT}, + refundAmt = #{refundamt,jdbcType=DECIMAL}, + state = #{state,jdbcType=VARCHAR}, + channelSendSn = #{channelsendsn,jdbcType=VARCHAR}, + channelRecvSn = #{channelrecvsn,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantOrderSplitMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantOrderSplitMapper.xml new file mode 100644 index 0000000..7c2c813 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantOrderSplitMapper.xml @@ -0,0 +1,294 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, orderNumber, orderAmt, payTime, status, mercOrderNo, merchantCode, merchantId, + merchantName, divisionMode, divStatus, fee, createTime, feePayer, divStatusCode, + remark, refundAmt, notifyUrl, aisleSwitch, payTypeName, payTypeCode, orderType + + + + delete from tb_pluss_merchant_order_split + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_order_split (id, orderNumber, orderAmt, + payTime, status, mercOrderNo, + merchantCode, merchantId, merchantName, + divisionMode, divStatus, fee, + createTime, feePayer, divStatusCode, + remark, refundAmt, notifyUrl, + aisleSwitch, payTypeName, payTypeCode, + orderType) + values (#{id,jdbcType=INTEGER}, #{ordernumber,jdbcType=VARCHAR}, #{orderamt,jdbcType=DECIMAL}, + #{paytime,jdbcType=TIMESTAMP}, #{status,jdbcType=INTEGER}, #{mercorderno,jdbcType=VARCHAR}, + #{merchantcode,jdbcType=VARCHAR}, #{merchantid,jdbcType=VARCHAR}, #{merchantname,jdbcType=VARCHAR}, + #{divisionmode,jdbcType=VARCHAR}, #{divstatus,jdbcType=TINYINT}, #{fee,jdbcType=DECIMAL}, + #{createtime,jdbcType=TIMESTAMP}, #{feepayer,jdbcType=VARCHAR}, #{divstatuscode,jdbcType=VARCHAR}, + #{remark,jdbcType=VARCHAR}, #{refundamt,jdbcType=DECIMAL}, #{notifyurl,jdbcType=VARCHAR}, + #{aisleswitch,jdbcType=VARCHAR}, #{paytypename,jdbcType=VARCHAR}, #{paytypecode,jdbcType=VARCHAR}, + #{ordertype,jdbcType=VARCHAR}) + + + insert into tb_pluss_merchant_order_split + + + id, + + + orderNumber, + + + orderAmt, + + + payTime, + + + status, + + + mercOrderNo, + + + merchantCode, + + + merchantId, + + + merchantName, + + + divisionMode, + + + divStatus, + + + fee, + + + createTime, + + + feePayer, + + + divStatusCode, + + + remark, + + + refundAmt, + + + notifyUrl, + + + aisleSwitch, + + + payTypeName, + + + payTypeCode, + + + orderType, + + + + + #{id,jdbcType=INTEGER}, + + + #{ordernumber,jdbcType=VARCHAR}, + + + #{orderamt,jdbcType=DECIMAL}, + + + #{paytime,jdbcType=TIMESTAMP}, + + + #{status,jdbcType=INTEGER}, + + + #{mercorderno,jdbcType=VARCHAR}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantid,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{divisionmode,jdbcType=VARCHAR}, + + + #{divstatus,jdbcType=TINYINT}, + + + #{fee,jdbcType=DECIMAL}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{feepayer,jdbcType=VARCHAR}, + + + #{divstatuscode,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{refundamt,jdbcType=DECIMAL}, + + + #{notifyurl,jdbcType=VARCHAR}, + + + #{aisleswitch,jdbcType=VARCHAR}, + + + #{paytypename,jdbcType=VARCHAR}, + + + #{paytypecode,jdbcType=VARCHAR}, + + + #{ordertype,jdbcType=VARCHAR}, + + + + + update tb_pluss_merchant_order_split + + + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + + + orderAmt = #{orderamt,jdbcType=DECIMAL}, + + + payTime = #{paytime,jdbcType=TIMESTAMP}, + + + status = #{status,jdbcType=INTEGER}, + + + mercOrderNo = #{mercorderno,jdbcType=VARCHAR}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantId = #{merchantid,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + divisionMode = #{divisionmode,jdbcType=VARCHAR}, + + + divStatus = #{divstatus,jdbcType=TINYINT}, + + + fee = #{fee,jdbcType=DECIMAL}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + feePayer = #{feepayer,jdbcType=VARCHAR}, + + + divStatusCode = #{divstatuscode,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + refundAmt = #{refundamt,jdbcType=DECIMAL}, + + + notifyUrl = #{notifyurl,jdbcType=VARCHAR}, + + + aisleSwitch = #{aisleswitch,jdbcType=VARCHAR}, + + + payTypeName = #{paytypename,jdbcType=VARCHAR}, + + + payTypeCode = #{paytypecode,jdbcType=VARCHAR}, + + + orderType = #{ordertype,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_order_split + set orderNumber = #{ordernumber,jdbcType=VARCHAR}, + orderAmt = #{orderamt,jdbcType=DECIMAL}, + payTime = #{paytime,jdbcType=TIMESTAMP}, + status = #{status,jdbcType=INTEGER}, + mercOrderNo = #{mercorderno,jdbcType=VARCHAR}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantId = #{merchantid,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + divisionMode = #{divisionmode,jdbcType=VARCHAR}, + divStatus = #{divstatus,jdbcType=TINYINT}, + fee = #{fee,jdbcType=DECIMAL}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + feePayer = #{feepayer,jdbcType=VARCHAR}, + divStatusCode = #{divstatuscode,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + refundAmt = #{refundamt,jdbcType=DECIMAL}, + notifyUrl = #{notifyurl,jdbcType=VARCHAR}, + aisleSwitch = #{aisleswitch,jdbcType=VARCHAR}, + payTypeName = #{paytypename,jdbcType=VARCHAR}, + payTypeCode = #{paytypecode,jdbcType=VARCHAR}, + orderType = #{ordertype,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantOrderSplitRefundMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantOrderSplitRefundMapper.xml new file mode 100644 index 0000000..653711a --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantOrderSplitRefundMapper.xml @@ -0,0 +1,235 @@ + + + + + + + + + + + + + + + + + + + + + + + + id, orderNumber, mercOrderNo, status, orderAmt, orderTime, refundNo, mercRefundNo, + refundTime, notifyUrl, refundAmt, refundReason, remark, channelRefundState, channelFundsState, + channelFundsDesc, channelRefundNo + + + + delete from tb_pluss_merchant_order_split_refund + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_order_split_refund (id, orderNumber, mercOrderNo, + status, orderAmt, orderTime, + refundNo, mercRefundNo, refundTime, + notifyUrl, refundAmt, refundReason, + remark, channelRefundState, channelFundsState, + channelFundsDesc, channelRefundNo) + values (#{id,jdbcType=INTEGER}, #{ordernumber,jdbcType=VARCHAR}, #{mercorderno,jdbcType=VARCHAR}, + #{status,jdbcType=INTEGER}, #{orderamt,jdbcType=DECIMAL}, #{ordertime,jdbcType=TIMESTAMP}, + #{refundno,jdbcType=VARCHAR}, #{mercrefundno,jdbcType=VARCHAR}, #{refundtime,jdbcType=TIMESTAMP}, + #{notifyurl,jdbcType=VARCHAR}, #{refundamt,jdbcType=DECIMAL}, #{refundreason,jdbcType=VARCHAR}, + #{remark,jdbcType=VARCHAR}, #{channelrefundstate,jdbcType=VARCHAR}, #{channelfundsstate,jdbcType=VARCHAR}, + #{channelfundsdesc,jdbcType=VARCHAR}, #{channelrefundno,jdbcType=VARCHAR}) + + + insert into tb_pluss_merchant_order_split_refund + + + id, + + + orderNumber, + + + mercOrderNo, + + + status, + + + orderAmt, + + + orderTime, + + + refundNo, + + + mercRefundNo, + + + refundTime, + + + notifyUrl, + + + refundAmt, + + + refundReason, + + + remark, + + + channelRefundState, + + + channelFundsState, + + + channelFundsDesc, + + + channelRefundNo, + + + + + #{id,jdbcType=INTEGER}, + + + #{ordernumber,jdbcType=VARCHAR}, + + + #{mercorderno,jdbcType=VARCHAR}, + + + #{status,jdbcType=INTEGER}, + + + #{orderamt,jdbcType=DECIMAL}, + + + #{ordertime,jdbcType=TIMESTAMP}, + + + #{refundno,jdbcType=VARCHAR}, + + + #{mercrefundno,jdbcType=VARCHAR}, + + + #{refundtime,jdbcType=TIMESTAMP}, + + + #{notifyurl,jdbcType=VARCHAR}, + + + #{refundamt,jdbcType=DECIMAL}, + + + #{refundreason,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{channelrefundstate,jdbcType=VARCHAR}, + + + #{channelfundsstate,jdbcType=VARCHAR}, + + + #{channelfundsdesc,jdbcType=VARCHAR}, + + + #{channelrefundno,jdbcType=VARCHAR}, + + + + + update tb_pluss_merchant_order_split_refund + + + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + + + mercOrderNo = #{mercorderno,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=INTEGER}, + + + orderAmt = #{orderamt,jdbcType=DECIMAL}, + + + orderTime = #{ordertime,jdbcType=TIMESTAMP}, + + + refundNo = #{refundno,jdbcType=VARCHAR}, + + + mercRefundNo = #{mercrefundno,jdbcType=VARCHAR}, + + + refundTime = #{refundtime,jdbcType=TIMESTAMP}, + + + notifyUrl = #{notifyurl,jdbcType=VARCHAR}, + + + refundAmt = #{refundamt,jdbcType=DECIMAL}, + + + refundReason = #{refundreason,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + channelRefundState = #{channelrefundstate,jdbcType=VARCHAR}, + + + channelFundsState = #{channelfundsstate,jdbcType=VARCHAR}, + + + channelFundsDesc = #{channelfundsdesc,jdbcType=VARCHAR}, + + + channelRefundNo = #{channelrefundno,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_order_split_refund + set orderNumber = #{ordernumber,jdbcType=VARCHAR}, + mercOrderNo = #{mercorderno,jdbcType=VARCHAR}, + status = #{status,jdbcType=INTEGER}, + orderAmt = #{orderamt,jdbcType=DECIMAL}, + orderTime = #{ordertime,jdbcType=TIMESTAMP}, + refundNo = #{refundno,jdbcType=VARCHAR}, + mercRefundNo = #{mercrefundno,jdbcType=VARCHAR}, + refundTime = #{refundtime,jdbcType=TIMESTAMP}, + notifyUrl = #{notifyurl,jdbcType=VARCHAR}, + refundAmt = #{refundamt,jdbcType=DECIMAL}, + refundReason = #{refundreason,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + channelRefundState = #{channelrefundstate,jdbcType=VARCHAR}, + channelFundsState = #{channelfundsstate,jdbcType=VARCHAR}, + channelFundsDesc = #{channelfundsdesc,jdbcType=VARCHAR}, + channelRefundNo = #{channelrefundno,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantOrderStaffMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantOrderStaffMapper.xml new file mode 100644 index 0000000..84fd79b --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantOrderStaffMapper.xml @@ -0,0 +1,93 @@ + + + + + + + + + + + + id, orderNumber, userId, createTime, updateTime + + + + delete from tb_pluss_merchant_order_staff + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_order_staff (id, orderNumber, userId, + createTime, updateTime) + values (#{id,jdbcType=INTEGER}, #{ordernumber,jdbcType=VARCHAR}, #{userid,jdbcType=INTEGER}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_merchant_order_staff + + + id, + + + orderNumber, + + + userId, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{ordernumber,jdbcType=VARCHAR}, + + + #{userid,jdbcType=INTEGER}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_merchant_order_staff + + + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + + + userId = #{userid,jdbcType=INTEGER}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_order_staff + set orderNumber = #{ordernumber,jdbcType=VARCHAR}, + userId = #{userid,jdbcType=INTEGER}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantOrderStatisticsMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantOrderStatisticsMapper.xml new file mode 100644 index 0000000..457ea48 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantOrderStatisticsMapper.xml @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + id, merchantCode, totalFee, count, retFee, retCount, startDate, endDate, createTime + + + + delete from tb_pluss_merchant_order_statistics + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_order_statistics (id, merchantCode, totalFee, + count, retFee, retCount, + startDate, endDate, createTime + ) + values (#{id,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, #{totalfee,jdbcType=DECIMAL}, + #{count,jdbcType=INTEGER}, #{retfee,jdbcType=DECIMAL}, #{retcount,jdbcType=INTEGER}, + #{startdate,jdbcType=DATE}, #{enddate,jdbcType=DATE}, #{createtime,jdbcType=TIMESTAMP} + ) + + + insert into tb_pluss_merchant_order_statistics + + + id, + + + merchantCode, + + + totalFee, + + + count, + + + retFee, + + + retCount, + + + startDate, + + + endDate, + + + createTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{totalfee,jdbcType=DECIMAL}, + + + #{count,jdbcType=INTEGER}, + + + #{retfee,jdbcType=DECIMAL}, + + + #{retcount,jdbcType=INTEGER}, + + + #{startdate,jdbcType=DATE}, + + + #{enddate,jdbcType=DATE}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_merchant_order_statistics + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + totalFee = #{totalfee,jdbcType=DECIMAL}, + + + count = #{count,jdbcType=INTEGER}, + + + retFee = #{retfee,jdbcType=DECIMAL}, + + + retCount = #{retcount,jdbcType=INTEGER}, + + + startDate = #{startdate,jdbcType=DATE}, + + + endDate = #{enddate,jdbcType=DATE}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_order_statistics + set merchantCode = #{merchantcode,jdbcType=VARCHAR}, + totalFee = #{totalfee,jdbcType=DECIMAL}, + count = #{count,jdbcType=INTEGER}, + retFee = #{retfee,jdbcType=DECIMAL}, + retCount = #{retcount,jdbcType=INTEGER}, + startDate = #{startdate,jdbcType=DATE}, + endDate = #{enddate,jdbcType=DATE}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantPluginMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantPluginMapper.xml new file mode 100644 index 0000000..277af28 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantPluginMapper.xml @@ -0,0 +1,198 @@ + + + + + + + + + + + + + + + + + + + + + id, channel, userId, pluginId, status, thirdStatus, applicationId, remark, createTime, + updateTime, posMerId + + + extra + + + + delete from tb_pluss_merchant_plugin + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_plugin (id, channel, userId, + pluginId, status, thirdStatus, + applicationId, remark, createTime, + updateTime, posMerId, extra + ) + values (#{id,jdbcType=INTEGER}, #{channel,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, + #{pluginid,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, #{thirdstatus,jdbcType=VARCHAR}, + #{applicationid,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, + #{updatetime,jdbcType=TIMESTAMP}, #{posmerid,jdbcType=VARCHAR}, #{extra,jdbcType=LONGVARCHAR} + ) + + + insert into tb_pluss_merchant_plugin + + + id, + + + channel, + + + userId, + + + pluginId, + + + status, + + + thirdStatus, + + + applicationId, + + + remark, + + + createTime, + + + updateTime, + + + posMerId, + + + extra, + + + + + #{id,jdbcType=INTEGER}, + + + #{channel,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{pluginid,jdbcType=VARCHAR}, + + + #{status,jdbcType=VARCHAR}, + + + #{thirdstatus,jdbcType=VARCHAR}, + + + #{applicationid,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{posmerid,jdbcType=VARCHAR}, + + + #{extra,jdbcType=LONGVARCHAR}, + + + + + update tb_pluss_merchant_plugin + + + channel = #{channel,jdbcType=INTEGER}, + + + userId = #{userid,jdbcType=INTEGER}, + + + pluginId = #{pluginid,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=VARCHAR}, + + + thirdStatus = #{thirdstatus,jdbcType=VARCHAR}, + + + applicationId = #{applicationid,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + posMerId = #{posmerid,jdbcType=VARCHAR}, + + + extra = #{extra,jdbcType=LONGVARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_plugin + set channel = #{channel,jdbcType=INTEGER}, + userId = #{userid,jdbcType=INTEGER}, + pluginId = #{pluginid,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + thirdStatus = #{thirdstatus,jdbcType=VARCHAR}, + applicationId = #{applicationid,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + posMerId = #{posmerid,jdbcType=VARCHAR}, + extra = #{extra,jdbcType=LONGVARCHAR} + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_plugin + set channel = #{channel,jdbcType=INTEGER}, + userId = #{userid,jdbcType=INTEGER}, + pluginId = #{pluginid,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + thirdStatus = #{thirdstatus,jdbcType=VARCHAR}, + applicationId = #{applicationid,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + posMerId = #{posmerid,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantProfitMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantProfitMapper.xml new file mode 100644 index 0000000..d17a4f5 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantProfitMapper.xml @@ -0,0 +1,341 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, userId, type, price, orderNumber, merchantCode, merchantName, consumeFee, createDt, + orderDt, status, payTypeCode, payTypeName, merchantLogo, level, merchantParentId, + merchantParentName, merchantParentLogo, phone, userName, merchantParentLevel, merchantParentPhone, + profitRate, agentStaffId, recordDate, recordMonth + + + + delete from tb_pluss_merchant_profit + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_profit (id, userId, type, + price, orderNumber, merchantCode, + merchantName, consumeFee, createDt, + orderDt, status, payTypeCode, + payTypeName, merchantLogo, level, + merchantParentId, merchantParentName, merchantParentLogo, + phone, userName, merchantParentLevel, + merchantParentPhone, profitRate, agentStaffId, + recordDate, recordMonth) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{type,jdbcType=VARCHAR}, + #{price,jdbcType=DECIMAL}, #{ordernumber,jdbcType=VARCHAR}, #{merchantcode,jdbcType=VARCHAR}, + #{merchantname,jdbcType=VARCHAR}, #{consumefee,jdbcType=DOUBLE}, #{createdt,jdbcType=TIMESTAMP}, + #{orderdt,jdbcType=TIMESTAMP}, #{status,jdbcType=VARCHAR}, #{paytypecode,jdbcType=VARCHAR}, + #{paytypename,jdbcType=VARCHAR}, #{merchantlogo,jdbcType=VARCHAR}, #{level,jdbcType=INTEGER}, + #{merchantparentid,jdbcType=INTEGER}, #{merchantparentname,jdbcType=VARCHAR}, #{merchantparentlogo,jdbcType=VARCHAR}, + #{phone,jdbcType=VARCHAR}, #{username,jdbcType=VARCHAR}, #{merchantparentlevel,jdbcType=VARCHAR}, + #{merchantparentphone,jdbcType=VARCHAR}, #{profitrate,jdbcType=INTEGER}, #{agentstaffid,jdbcType=INTEGER}, + #{recorddate,jdbcType=DATE}, #{recordmonth,jdbcType=VARCHAR}) + + + insert into tb_pluss_merchant_profit + + + id, + + + userId, + + + type, + + + price, + + + orderNumber, + + + merchantCode, + + + merchantName, + + + consumeFee, + + + createDt, + + + orderDt, + + + status, + + + payTypeCode, + + + payTypeName, + + + merchantLogo, + + + level, + + + merchantParentId, + + + merchantParentName, + + + merchantParentLogo, + + + phone, + + + userName, + + + merchantParentLevel, + + + merchantParentPhone, + + + profitRate, + + + agentStaffId, + + + recordDate, + + + recordMonth, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{type,jdbcType=VARCHAR}, + + + #{price,jdbcType=DECIMAL}, + + + #{ordernumber,jdbcType=VARCHAR}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{consumefee,jdbcType=DOUBLE}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{orderdt,jdbcType=TIMESTAMP}, + + + #{status,jdbcType=VARCHAR}, + + + #{paytypecode,jdbcType=VARCHAR}, + + + #{paytypename,jdbcType=VARCHAR}, + + + #{merchantlogo,jdbcType=VARCHAR}, + + + #{level,jdbcType=INTEGER}, + + + #{merchantparentid,jdbcType=INTEGER}, + + + #{merchantparentname,jdbcType=VARCHAR}, + + + #{merchantparentlogo,jdbcType=VARCHAR}, + + + #{phone,jdbcType=VARCHAR}, + + + #{username,jdbcType=VARCHAR}, + + + #{merchantparentlevel,jdbcType=VARCHAR}, + + + #{merchantparentphone,jdbcType=VARCHAR}, + + + #{profitrate,jdbcType=INTEGER}, + + + #{agentstaffid,jdbcType=INTEGER}, + + + #{recorddate,jdbcType=DATE}, + + + #{recordmonth,jdbcType=VARCHAR}, + + + + + update tb_pluss_merchant_profit + + + userId = #{userid,jdbcType=INTEGER}, + + + type = #{type,jdbcType=VARCHAR}, + + + price = #{price,jdbcType=DECIMAL}, + + + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + consumeFee = #{consumefee,jdbcType=DOUBLE}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + orderDt = #{orderdt,jdbcType=TIMESTAMP}, + + + status = #{status,jdbcType=VARCHAR}, + + + payTypeCode = #{paytypecode,jdbcType=VARCHAR}, + + + payTypeName = #{paytypename,jdbcType=VARCHAR}, + + + merchantLogo = #{merchantlogo,jdbcType=VARCHAR}, + + + level = #{level,jdbcType=INTEGER}, + + + merchantParentId = #{merchantparentid,jdbcType=INTEGER}, + + + merchantParentName = #{merchantparentname,jdbcType=VARCHAR}, + + + merchantParentLogo = #{merchantparentlogo,jdbcType=VARCHAR}, + + + phone = #{phone,jdbcType=VARCHAR}, + + + userName = #{username,jdbcType=VARCHAR}, + + + merchantParentLevel = #{merchantparentlevel,jdbcType=VARCHAR}, + + + merchantParentPhone = #{merchantparentphone,jdbcType=VARCHAR}, + + + profitRate = #{profitrate,jdbcType=INTEGER}, + + + agentStaffId = #{agentstaffid,jdbcType=INTEGER}, + + + recordDate = #{recorddate,jdbcType=DATE}, + + + recordMonth = #{recordmonth,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_profit + set userId = #{userid,jdbcType=INTEGER}, + type = #{type,jdbcType=VARCHAR}, + price = #{price,jdbcType=DECIMAL}, + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + consumeFee = #{consumefee,jdbcType=DOUBLE}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + orderDt = #{orderdt,jdbcType=TIMESTAMP}, + status = #{status,jdbcType=VARCHAR}, + payTypeCode = #{paytypecode,jdbcType=VARCHAR}, + payTypeName = #{paytypename,jdbcType=VARCHAR}, + merchantLogo = #{merchantlogo,jdbcType=VARCHAR}, + level = #{level,jdbcType=INTEGER}, + merchantParentId = #{merchantparentid,jdbcType=INTEGER}, + merchantParentName = #{merchantparentname,jdbcType=VARCHAR}, + merchantParentLogo = #{merchantparentlogo,jdbcType=VARCHAR}, + phone = #{phone,jdbcType=VARCHAR}, + userName = #{username,jdbcType=VARCHAR}, + merchantParentLevel = #{merchantparentlevel,jdbcType=VARCHAR}, + merchantParentPhone = #{merchantparentphone,jdbcType=VARCHAR}, + profitRate = #{profitrate,jdbcType=INTEGER}, + agentStaffId = #{agentstaffid,jdbcType=INTEGER}, + recordDate = #{recorddate,jdbcType=DATE}, + recordMonth = #{recordmonth,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantQrcodeMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantQrcodeMapper.xml new file mode 100644 index 0000000..89a8be0 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantQrcodeMapper.xml @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + id, merchantCode, merchantName, qrCodeUrl, createTime, updateTime, wechat + + + + delete from tb_pluss_merchant_qrcode + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_qrcode (id, merchantCode, merchantName, + qrCodeUrl, createTime, updateTime, + wechat) + values (#{id,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, #{merchantname,jdbcType=VARCHAR}, + #{qrcodeurl,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}, + #{wechat,jdbcType=VARCHAR}) + + + insert into tb_pluss_merchant_qrcode + + + id, + + + merchantCode, + + + merchantName, + + + qrCodeUrl, + + + createTime, + + + updateTime, + + + wechat, + + + + + #{id,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{qrcodeurl,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{wechat,jdbcType=VARCHAR}, + + + + + update tb_pluss_merchant_qrcode + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + qrCodeUrl = #{qrcodeurl,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + wechat = #{wechat,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_qrcode + set merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + qrCodeUrl = #{qrcodeurl,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + wechat = #{wechat,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantRateMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantRateMapper.xml new file mode 100644 index 0000000..8845736 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantRateMapper.xml @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + id, userId, rate, updateTime, previousRate, isFixedRate, startTime, endTime + + + + delete from tb_pluss_merchant_rate + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_rate (id, userId, rate, + updateTime, previousRate, isFixedRate, + startTime, endTime) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{rate,jdbcType=INTEGER}, + #{updatetime,jdbcType=TIMESTAMP}, #{previousrate,jdbcType=INTEGER}, #{isfixedrate,jdbcType=CHAR}, + #{starttime,jdbcType=TIMESTAMP}, #{endtime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_merchant_rate + + + id, + + + userId, + + + rate, + + + updateTime, + + + previousRate, + + + isFixedRate, + + + startTime, + + + endTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{rate,jdbcType=INTEGER}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{previousrate,jdbcType=INTEGER}, + + + #{isfixedrate,jdbcType=CHAR}, + + + #{starttime,jdbcType=TIMESTAMP}, + + + #{endtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_merchant_rate + + + userId = #{userid,jdbcType=INTEGER}, + + + rate = #{rate,jdbcType=INTEGER}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + previousRate = #{previousrate,jdbcType=INTEGER}, + + + isFixedRate = #{isfixedrate,jdbcType=CHAR}, + + + startTime = #{starttime,jdbcType=TIMESTAMP}, + + + endTime = #{endtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_rate + set userId = #{userid,jdbcType=INTEGER}, + rate = #{rate,jdbcType=INTEGER}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + previousRate = #{previousrate,jdbcType=INTEGER}, + isFixedRate = #{isfixedrate,jdbcType=CHAR}, + startTime = #{starttime,jdbcType=TIMESTAMP}, + endTime = #{endtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantRateNewMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantRateNewMapper.xml new file mode 100644 index 0000000..a397283 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantRateNewMapper.xml @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + id, channel, merchantId, wxRate, aliRate, bankRate, bankRateLarge, createTime, updateTime + + + + delete from tb_pluss_merchant_rate_new + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_rate_new (id, channel, merchantId, + wxRate, aliRate, bankRate, + bankRateLarge, createTime, updateTime + ) + values (#{id,jdbcType=INTEGER}, #{channel,jdbcType=INTEGER}, #{merchantid,jdbcType=VARCHAR}, + #{wxrate,jdbcType=INTEGER}, #{alirate,jdbcType=INTEGER}, #{bankrate,jdbcType=INTEGER}, + #{bankratelarge,jdbcType=INTEGER}, #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP} + ) + + + insert into tb_pluss_merchant_rate_new + + + id, + + + channel, + + + merchantId, + + + wxRate, + + + aliRate, + + + bankRate, + + + bankRateLarge, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{channel,jdbcType=INTEGER}, + + + #{merchantid,jdbcType=VARCHAR}, + + + #{wxrate,jdbcType=INTEGER}, + + + #{alirate,jdbcType=INTEGER}, + + + #{bankrate,jdbcType=INTEGER}, + + + #{bankratelarge,jdbcType=INTEGER}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_merchant_rate_new + + + channel = #{channel,jdbcType=INTEGER}, + + + merchantId = #{merchantid,jdbcType=VARCHAR}, + + + wxRate = #{wxrate,jdbcType=INTEGER}, + + + aliRate = #{alirate,jdbcType=INTEGER}, + + + bankRate = #{bankrate,jdbcType=INTEGER}, + + + bankRateLarge = #{bankratelarge,jdbcType=INTEGER}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_rate_new + set channel = #{channel,jdbcType=INTEGER}, + merchantId = #{merchantid,jdbcType=VARCHAR}, + wxRate = #{wxrate,jdbcType=INTEGER}, + aliRate = #{alirate,jdbcType=INTEGER}, + bankRate = #{bankrate,jdbcType=INTEGER}, + bankRateLarge = #{bankratelarge,jdbcType=INTEGER}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantRateNewRecordMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantRateNewRecordMapper.xml new file mode 100644 index 0000000..c4cf49c --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantRateNewRecordMapper.xml @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + id, channel, merchantId, wxRate, aliRate, bankRate, bankRateLarge, status, remark, + createTime, updateTime, operationDate + + + + delete from tb_pluss_merchant_rate_new_record + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_rate_new_record (id, channel, merchantId, + wxRate, aliRate, bankRate, + bankRateLarge, status, remark, + createTime, updateTime, operationDate + ) + values (#{id,jdbcType=INTEGER}, #{channel,jdbcType=INTEGER}, #{merchantid,jdbcType=VARCHAR}, + #{wxrate,jdbcType=INTEGER}, #{alirate,jdbcType=INTEGER}, #{bankrate,jdbcType=INTEGER}, + #{bankratelarge,jdbcType=INTEGER}, #{status,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}, #{operationdate,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_merchant_rate_new_record + + + id, + + + channel, + + + merchantId, + + + wxRate, + + + aliRate, + + + bankRate, + + + bankRateLarge, + + + status, + + + remark, + + + createTime, + + + updateTime, + + + operationDate, + + + + + #{id,jdbcType=INTEGER}, + + + #{channel,jdbcType=INTEGER}, + + + #{merchantid,jdbcType=VARCHAR}, + + + #{wxrate,jdbcType=INTEGER}, + + + #{alirate,jdbcType=INTEGER}, + + + #{bankrate,jdbcType=INTEGER}, + + + #{bankratelarge,jdbcType=INTEGER}, + + + #{status,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{operationdate,jdbcType=VARCHAR}, + + + + + update tb_pluss_merchant_rate_new_record + + + channel = #{channel,jdbcType=INTEGER}, + + + merchantId = #{merchantid,jdbcType=VARCHAR}, + + + wxRate = #{wxrate,jdbcType=INTEGER}, + + + aliRate = #{alirate,jdbcType=INTEGER}, + + + bankRate = #{bankrate,jdbcType=INTEGER}, + + + bankRateLarge = #{bankratelarge,jdbcType=INTEGER}, + + + status = #{status,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + operationDate = #{operationdate,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_rate_new_record + set channel = #{channel,jdbcType=INTEGER}, + merchantId = #{merchantid,jdbcType=VARCHAR}, + wxRate = #{wxrate,jdbcType=INTEGER}, + aliRate = #{alirate,jdbcType=INTEGER}, + bankRate = #{bankrate,jdbcType=INTEGER}, + bankRateLarge = #{bankratelarge,jdbcType=INTEGER}, + status = #{status,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + operationDate = #{operationdate,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantRateRecordMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantRateRecordMapper.xml new file mode 100644 index 0000000..2fc08ea --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantRateRecordMapper.xml @@ -0,0 +1,82 @@ + + + + + + + + + + + id, userId, rate, createTime + + + + delete from tb_pluss_merchant_rate_record + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_rate_record (id, userId, rate, + createTime) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=VARCHAR}, #{rate,jdbcType=INTEGER}, + #{createtime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_merchant_rate_record + + + id, + + + userId, + + + rate, + + + createTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=VARCHAR}, + + + #{rate,jdbcType=INTEGER}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_merchant_rate_record + + + userId = #{userid,jdbcType=VARCHAR}, + + + rate = #{rate,jdbcType=INTEGER}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_rate_record + set userId = #{userid,jdbcType=VARCHAR}, + rate = #{rate,jdbcType=INTEGER}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantRefundOrderMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantRefundOrderMapper.xml new file mode 100644 index 0000000..9f00e44 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantRefundOrderMapper.xml @@ -0,0 +1,294 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ID, merchantCode, alias, orderNumber, refundNo, channelNo, payTime, refundTime, status, + orderType, payTypeCode, payTypeName, payAmt, aisleSwitch, createTime, channelMercNo, + failMsg, refundAmt, mercRefundNo, notifyUrl, refundReason, mercOrderNo + + + + delete from tb_pluss_merchant_refund_order + where ID = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_refund_order (ID, merchantCode, alias, + orderNumber, refundNo, channelNo, + payTime, refundTime, status, + orderType, payTypeCode, payTypeName, + payAmt, aisleSwitch, createTime, + channelMercNo, failMsg, refundAmt, + mercRefundNo, notifyUrl, refundReason, + mercOrderNo) + values (#{id,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, #{alias,jdbcType=VARCHAR}, + #{ordernumber,jdbcType=VARCHAR}, #{refundno,jdbcType=VARCHAR}, #{channelno,jdbcType=VARCHAR}, + #{paytime,jdbcType=TIMESTAMP}, #{refundtime,jdbcType=TIMESTAMP}, #{status,jdbcType=VARCHAR}, + #{ordertype,jdbcType=VARCHAR}, #{paytypecode,jdbcType=VARCHAR}, #{paytypename,jdbcType=VARCHAR}, + #{payamt,jdbcType=DECIMAL}, #{aisleswitch,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, + #{channelmercno,jdbcType=VARCHAR}, #{failmsg,jdbcType=VARCHAR}, #{refundamt,jdbcType=DECIMAL}, + #{mercrefundno,jdbcType=VARCHAR}, #{notifyurl,jdbcType=VARCHAR}, #{refundreason,jdbcType=VARCHAR}, + #{mercorderno,jdbcType=VARCHAR}) + + + insert into tb_pluss_merchant_refund_order + + + ID, + + + merchantCode, + + + alias, + + + orderNumber, + + + refundNo, + + + channelNo, + + + payTime, + + + refundTime, + + + status, + + + orderType, + + + payTypeCode, + + + payTypeName, + + + payAmt, + + + aisleSwitch, + + + createTime, + + + channelMercNo, + + + failMsg, + + + refundAmt, + + + mercRefundNo, + + + notifyUrl, + + + refundReason, + + + mercOrderNo, + + + + + #{id,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{alias,jdbcType=VARCHAR}, + + + #{ordernumber,jdbcType=VARCHAR}, + + + #{refundno,jdbcType=VARCHAR}, + + + #{channelno,jdbcType=VARCHAR}, + + + #{paytime,jdbcType=TIMESTAMP}, + + + #{refundtime,jdbcType=TIMESTAMP}, + + + #{status,jdbcType=VARCHAR}, + + + #{ordertype,jdbcType=VARCHAR}, + + + #{paytypecode,jdbcType=VARCHAR}, + + + #{paytypename,jdbcType=VARCHAR}, + + + #{payamt,jdbcType=DECIMAL}, + + + #{aisleswitch,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{channelmercno,jdbcType=VARCHAR}, + + + #{failmsg,jdbcType=VARCHAR}, + + + #{refundamt,jdbcType=DECIMAL}, + + + #{mercrefundno,jdbcType=VARCHAR}, + + + #{notifyurl,jdbcType=VARCHAR}, + + + #{refundreason,jdbcType=VARCHAR}, + + + #{mercorderno,jdbcType=VARCHAR}, + + + + + update tb_pluss_merchant_refund_order + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + alias = #{alias,jdbcType=VARCHAR}, + + + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + + + refundNo = #{refundno,jdbcType=VARCHAR}, + + + channelNo = #{channelno,jdbcType=VARCHAR}, + + + payTime = #{paytime,jdbcType=TIMESTAMP}, + + + refundTime = #{refundtime,jdbcType=TIMESTAMP}, + + + status = #{status,jdbcType=VARCHAR}, + + + orderType = #{ordertype,jdbcType=VARCHAR}, + + + payTypeCode = #{paytypecode,jdbcType=VARCHAR}, + + + payTypeName = #{paytypename,jdbcType=VARCHAR}, + + + payAmt = #{payamt,jdbcType=DECIMAL}, + + + aisleSwitch = #{aisleswitch,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + channelMercNo = #{channelmercno,jdbcType=VARCHAR}, + + + failMsg = #{failmsg,jdbcType=VARCHAR}, + + + refundAmt = #{refundamt,jdbcType=DECIMAL}, + + + mercRefundNo = #{mercrefundno,jdbcType=VARCHAR}, + + + notifyUrl = #{notifyurl,jdbcType=VARCHAR}, + + + refundReason = #{refundreason,jdbcType=VARCHAR}, + + + mercOrderNo = #{mercorderno,jdbcType=VARCHAR}, + + + where ID = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_refund_order + set merchantCode = #{merchantcode,jdbcType=VARCHAR}, + alias = #{alias,jdbcType=VARCHAR}, + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + refundNo = #{refundno,jdbcType=VARCHAR}, + channelNo = #{channelno,jdbcType=VARCHAR}, + payTime = #{paytime,jdbcType=TIMESTAMP}, + refundTime = #{refundtime,jdbcType=TIMESTAMP}, + status = #{status,jdbcType=VARCHAR}, + orderType = #{ordertype,jdbcType=VARCHAR}, + payTypeCode = #{paytypecode,jdbcType=VARCHAR}, + payTypeName = #{paytypename,jdbcType=VARCHAR}, + payAmt = #{payamt,jdbcType=DECIMAL}, + aisleSwitch = #{aisleswitch,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + channelMercNo = #{channelmercno,jdbcType=VARCHAR}, + failMsg = #{failmsg,jdbcType=VARCHAR}, + refundAmt = #{refundamt,jdbcType=DECIMAL}, + mercRefundNo = #{mercrefundno,jdbcType=VARCHAR}, + notifyUrl = #{notifyurl,jdbcType=VARCHAR}, + refundReason = #{refundreason,jdbcType=VARCHAR}, + mercOrderNo = #{mercorderno,jdbcType=VARCHAR} + where ID = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantRegistAuditRecordMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantRegistAuditRecordMapper.xml new file mode 100644 index 0000000..9c16c8c --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantRegistAuditRecordMapper.xml @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + id, merchantCode, merchantName, agentCode, agentName, creator, message, type, status, + failReason, creatDt, modifyStatus + + + + delete from tb_pluss_merchant_regist_audit_record + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_regist_audit_record (id, merchantCode, merchantName, + agentCode, agentName, creator, + message, type, status, + failReason, creatDt, modifyStatus + ) + values (#{id,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, #{merchantname,jdbcType=VARCHAR}, + #{agentcode,jdbcType=VARCHAR}, #{agentname,jdbcType=VARCHAR}, #{creator,jdbcType=VARCHAR}, + #{message,jdbcType=VARCHAR}, #{type,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, + #{failreason,jdbcType=VARCHAR}, #{creatdt,jdbcType=TIMESTAMP}, #{modifystatus,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_merchant_regist_audit_record + + + id, + + + merchantCode, + + + merchantName, + + + agentCode, + + + agentName, + + + creator, + + + message, + + + type, + + + status, + + + failReason, + + + creatDt, + + + modifyStatus, + + + + + #{id,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{agentcode,jdbcType=VARCHAR}, + + + #{agentname,jdbcType=VARCHAR}, + + + #{creator,jdbcType=VARCHAR}, + + + #{message,jdbcType=VARCHAR}, + + + #{type,jdbcType=VARCHAR}, + + + #{status,jdbcType=VARCHAR}, + + + #{failreason,jdbcType=VARCHAR}, + + + #{creatdt,jdbcType=TIMESTAMP}, + + + #{modifystatus,jdbcType=VARCHAR}, + + + + + update tb_pluss_merchant_regist_audit_record + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + agentCode = #{agentcode,jdbcType=VARCHAR}, + + + agentName = #{agentname,jdbcType=VARCHAR}, + + + creator = #{creator,jdbcType=VARCHAR}, + + + message = #{message,jdbcType=VARCHAR}, + + + type = #{type,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=VARCHAR}, + + + failReason = #{failreason,jdbcType=VARCHAR}, + + + creatDt = #{creatdt,jdbcType=TIMESTAMP}, + + + modifyStatus = #{modifystatus,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_regist_audit_record + set merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + agentCode = #{agentcode,jdbcType=VARCHAR}, + agentName = #{agentname,jdbcType=VARCHAR}, + creator = #{creator,jdbcType=VARCHAR}, + message = #{message,jdbcType=VARCHAR}, + type = #{type,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + failReason = #{failreason,jdbcType=VARCHAR}, + creatDt = #{creatdt,jdbcType=TIMESTAMP}, + modifyStatus = #{modifystatus,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantRegistLogMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantRegistLogMapper.xml new file mode 100644 index 0000000..34556e2 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantRegistLogMapper.xml @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + id, merchantCode, storeId, applyStatus, message, createDt, merchantName, merchantId, + parentCode, creator + + + + delete from tb_pluss_merchant_regist_log + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_regist_log (id, merchantCode, storeId, + applyStatus, message, createDt, + merchantName, merchantId, parentCode, + creator) + values (#{id,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, #{storeid,jdbcType=VARCHAR}, + #{applystatus,jdbcType=VARCHAR}, #{message,jdbcType=VARCHAR}, #{createdt,jdbcType=TIMESTAMP}, + #{merchantname,jdbcType=VARCHAR}, #{merchantid,jdbcType=VARCHAR}, #{parentcode,jdbcType=VARCHAR}, + #{creator,jdbcType=VARCHAR}) + + + insert into tb_pluss_merchant_regist_log + + + id, + + + merchantCode, + + + storeId, + + + applyStatus, + + + message, + + + createDt, + + + merchantName, + + + merchantId, + + + parentCode, + + + creator, + + + + + #{id,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{storeid,jdbcType=VARCHAR}, + + + #{applystatus,jdbcType=VARCHAR}, + + + #{message,jdbcType=VARCHAR}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{merchantid,jdbcType=VARCHAR}, + + + #{parentcode,jdbcType=VARCHAR}, + + + #{creator,jdbcType=VARCHAR}, + + + + + update tb_pluss_merchant_regist_log + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + storeId = #{storeid,jdbcType=VARCHAR}, + + + applyStatus = #{applystatus,jdbcType=VARCHAR}, + + + message = #{message,jdbcType=VARCHAR}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + merchantId = #{merchantid,jdbcType=VARCHAR}, + + + parentCode = #{parentcode,jdbcType=VARCHAR}, + + + creator = #{creator,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_regist_log + set merchantCode = #{merchantcode,jdbcType=VARCHAR}, + storeId = #{storeid,jdbcType=VARCHAR}, + applyStatus = #{applystatus,jdbcType=VARCHAR}, + message = #{message,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + merchantId = #{merchantid,jdbcType=VARCHAR}, + parentCode = #{parentcode,jdbcType=VARCHAR}, + creator = #{creator,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantRejectDescMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantRejectDescMapper.xml new file mode 100644 index 0000000..ffb2199 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantRejectDescMapper.xml @@ -0,0 +1,93 @@ + + + + + + + + + + + + id, rejectName, sort, createTime, updateTime + + + + delete from tb_pluss_merchant_reject_desc + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_reject_desc (id, rejectName, sort, + createTime, updateTime) + values (#{id,jdbcType=INTEGER}, #{rejectname,jdbcType=VARCHAR}, #{sort,jdbcType=INTEGER}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_merchant_reject_desc + + + id, + + + rejectName, + + + sort, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{rejectname,jdbcType=VARCHAR}, + + + #{sort,jdbcType=INTEGER}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_merchant_reject_desc + + + rejectName = #{rejectname,jdbcType=VARCHAR}, + + + sort = #{sort,jdbcType=INTEGER}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_reject_desc + set rejectName = #{rejectname,jdbcType=VARCHAR}, + sort = #{sort,jdbcType=INTEGER}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantSplitSettingMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantSplitSettingMapper.xml new file mode 100644 index 0000000..65f18df --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantSplitSettingMapper.xml @@ -0,0 +1,188 @@ + + + + + + + + + + + + + + + + + + + + id, chieMerchantCode, chieMerchantId, isDivistion, divisionMode, diviMerchantCode, + diviMerchantId, divAmt, divRatio, isChargeFee, createTime, status, notifyUrl + + + + delete from tb_pluss_merchant_split_setting + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_split_setting (id, chieMerchantCode, chieMerchantId, + isDivistion, divisionMode, diviMerchantCode, + diviMerchantId, divAmt, divRatio, + isChargeFee, createTime, status, + notifyUrl) + values (#{id,jdbcType=INTEGER}, #{chiemerchantcode,jdbcType=VARCHAR}, #{chiemerchantid,jdbcType=VARCHAR}, + #{isdivistion,jdbcType=VARCHAR}, #{divisionmode,jdbcType=VARCHAR}, #{divimerchantcode,jdbcType=VARCHAR}, + #{divimerchantid,jdbcType=VARCHAR}, #{divamt,jdbcType=DECIMAL}, #{divratio,jdbcType=DECIMAL}, + #{ischargefee,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{status,jdbcType=INTEGER}, + #{notifyurl,jdbcType=VARCHAR}) + + + insert into tb_pluss_merchant_split_setting + + + id, + + + chieMerchantCode, + + + chieMerchantId, + + + isDivistion, + + + divisionMode, + + + diviMerchantCode, + + + diviMerchantId, + + + divAmt, + + + divRatio, + + + isChargeFee, + + + createTime, + + + status, + + + notifyUrl, + + + + + #{id,jdbcType=INTEGER}, + + + #{chiemerchantcode,jdbcType=VARCHAR}, + + + #{chiemerchantid,jdbcType=VARCHAR}, + + + #{isdivistion,jdbcType=VARCHAR}, + + + #{divisionmode,jdbcType=VARCHAR}, + + + #{divimerchantcode,jdbcType=VARCHAR}, + + + #{divimerchantid,jdbcType=VARCHAR}, + + + #{divamt,jdbcType=DECIMAL}, + + + #{divratio,jdbcType=DECIMAL}, + + + #{ischargefee,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{status,jdbcType=INTEGER}, + + + #{notifyurl,jdbcType=VARCHAR}, + + + + + update tb_pluss_merchant_split_setting + + + chieMerchantCode = #{chiemerchantcode,jdbcType=VARCHAR}, + + + chieMerchantId = #{chiemerchantid,jdbcType=VARCHAR}, + + + isDivistion = #{isdivistion,jdbcType=VARCHAR}, + + + divisionMode = #{divisionmode,jdbcType=VARCHAR}, + + + diviMerchantCode = #{divimerchantcode,jdbcType=VARCHAR}, + + + diviMerchantId = #{divimerchantid,jdbcType=VARCHAR}, + + + divAmt = #{divamt,jdbcType=DECIMAL}, + + + divRatio = #{divratio,jdbcType=DECIMAL}, + + + isChargeFee = #{ischargefee,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + status = #{status,jdbcType=INTEGER}, + + + notifyUrl = #{notifyurl,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_split_setting + set chieMerchantCode = #{chiemerchantcode,jdbcType=VARCHAR}, + chieMerchantId = #{chiemerchantid,jdbcType=VARCHAR}, + isDivistion = #{isdivistion,jdbcType=VARCHAR}, + divisionMode = #{divisionmode,jdbcType=VARCHAR}, + diviMerchantCode = #{divimerchantcode,jdbcType=VARCHAR}, + diviMerchantId = #{divimerchantid,jdbcType=VARCHAR}, + divAmt = #{divamt,jdbcType=DECIMAL}, + divRatio = #{divratio,jdbcType=DECIMAL}, + isChargeFee = #{ischargefee,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + status = #{status,jdbcType=INTEGER}, + notifyUrl = #{notifyurl,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantStaffConnMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantStaffConnMapper.xml new file mode 100644 index 0000000..648919d --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantStaffConnMapper.xml @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + id, userId, merchantCode, createTime, updateTime, isPushWxMessage, roleCode + + + + delete from tb_pluss_merchant_staff_conn + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_staff_conn (id, userId, merchantCode, + createTime, updateTime, isPushWxMessage, + roleCode) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}, #{ispushwxmessage,jdbcType=CHAR}, + #{rolecode,jdbcType=VARCHAR}) + + + insert into tb_pluss_merchant_staff_conn + + + id, + + + userId, + + + merchantCode, + + + createTime, + + + updateTime, + + + isPushWxMessage, + + + roleCode, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{ispushwxmessage,jdbcType=CHAR}, + + + #{rolecode,jdbcType=VARCHAR}, + + + + + update tb_pluss_merchant_staff_conn + + + userId = #{userid,jdbcType=INTEGER}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + isPushWxMessage = #{ispushwxmessage,jdbcType=CHAR}, + + + roleCode = #{rolecode,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_staff_conn + set userId = #{userid,jdbcType=INTEGER}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + isPushWxMessage = #{ispushwxmessage,jdbcType=CHAR}, + roleCode = #{rolecode,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantStoreMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantStoreMapper.xml new file mode 100644 index 0000000..3320337 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantStoreMapper.xml @@ -0,0 +1,580 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, merchantCode, merchantName, aliAccount, aliMcc, mcc, mccName, storeId, storeName, + linkName, linkPhone, addressNo, storeAddress, leshuaMerchantAddress, address, businessLicenseNo, + businessStartTime, businessEndTime, businessLicensePic, storeDesc, logo, creator, + createDt, openingTime, status, parentCode, email, isAccount, loginName, paymentCodeUrl, + storeHeadPic, storeInsidePic, cashPic, productDesc, rate, alipaySource, applymentId, + aliStatus, wechatStatus, leshuaStatus, subMchId, appTokenAuth, leshuaMchId, leshuaUserName, + payEcdemicSwitch, isMarket + + + + delete from tb_pluss_merchant_store + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_store (id, merchantCode, merchantName, + aliAccount, aliMcc, mcc, + mccName, storeId, storeName, + linkName, linkPhone, addressNo, + storeAddress, leshuaMerchantAddress, address, + businessLicenseNo, businessStartTime, + businessEndTime, businessLicensePic, + storeDesc, logo, creator, + createDt, openingTime, status, + parentCode, email, isAccount, + loginName, paymentCodeUrl, storeHeadPic, + storeInsidePic, cashPic, productDesc, + rate, alipaySource, applymentId, + aliStatus, wechatStatus, leshuaStatus, + subMchId, appTokenAuth, leshuaMchId, + leshuaUserName, payEcdemicSwitch, isMarket + ) + values (#{id,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, #{merchantname,jdbcType=VARCHAR}, + #{aliaccount,jdbcType=VARCHAR}, #{alimcc,jdbcType=VARCHAR}, #{mcc,jdbcType=VARCHAR}, + #{mccname,jdbcType=VARCHAR}, #{storeid,jdbcType=VARCHAR}, #{storename,jdbcType=VARCHAR}, + #{linkname,jdbcType=VARCHAR}, #{linkphone,jdbcType=VARCHAR}, #{addressno,jdbcType=VARCHAR}, + #{storeaddress,jdbcType=VARCHAR}, #{leshuamerchantaddress,jdbcType=VARCHAR}, #{address,jdbcType=VARCHAR}, + #{businesslicenseno,jdbcType=VARCHAR}, #{businessstarttime,jdbcType=TIMESTAMP}, + #{businessendtime,jdbcType=TIMESTAMP}, #{businesslicensepic,jdbcType=VARCHAR}, + #{storedesc,jdbcType=VARCHAR}, #{logo,jdbcType=VARCHAR}, #{creator,jdbcType=VARCHAR}, + #{createdt,jdbcType=TIMESTAMP}, #{openingtime,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, + #{parentcode,jdbcType=VARCHAR}, #{email,jdbcType=VARCHAR}, #{isaccount,jdbcType=VARCHAR}, + #{loginname,jdbcType=VARCHAR}, #{paymentcodeurl,jdbcType=VARCHAR}, #{storeheadpic,jdbcType=VARCHAR}, + #{storeinsidepic,jdbcType=VARCHAR}, #{cashpic,jdbcType=VARCHAR}, #{productdesc,jdbcType=VARCHAR}, + #{rate,jdbcType=DOUBLE}, #{alipaysource,jdbcType=VARCHAR}, #{applymentid,jdbcType=VARCHAR}, + #{alistatus,jdbcType=VARCHAR}, #{wechatstatus,jdbcType=VARCHAR}, #{leshuastatus,jdbcType=VARCHAR}, + #{submchid,jdbcType=VARCHAR}, #{apptokenauth,jdbcType=VARCHAR}, #{leshuamchid,jdbcType=VARCHAR}, + #{leshuausername,jdbcType=VARCHAR}, #{payecdemicswitch,jdbcType=VARCHAR}, #{ismarket,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_merchant_store + + + id, + + + merchantCode, + + + merchantName, + + + aliAccount, + + + aliMcc, + + + mcc, + + + mccName, + + + storeId, + + + storeName, + + + linkName, + + + linkPhone, + + + addressNo, + + + storeAddress, + + + leshuaMerchantAddress, + + + address, + + + businessLicenseNo, + + + businessStartTime, + + + businessEndTime, + + + businessLicensePic, + + + storeDesc, + + + logo, + + + creator, + + + createDt, + + + openingTime, + + + status, + + + parentCode, + + + email, + + + isAccount, + + + loginName, + + + paymentCodeUrl, + + + storeHeadPic, + + + storeInsidePic, + + + cashPic, + + + productDesc, + + + rate, + + + alipaySource, + + + applymentId, + + + aliStatus, + + + wechatStatus, + + + leshuaStatus, + + + subMchId, + + + appTokenAuth, + + + leshuaMchId, + + + leshuaUserName, + + + payEcdemicSwitch, + + + isMarket, + + + + + #{id,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{aliaccount,jdbcType=VARCHAR}, + + + #{alimcc,jdbcType=VARCHAR}, + + + #{mcc,jdbcType=VARCHAR}, + + + #{mccname,jdbcType=VARCHAR}, + + + #{storeid,jdbcType=VARCHAR}, + + + #{storename,jdbcType=VARCHAR}, + + + #{linkname,jdbcType=VARCHAR}, + + + #{linkphone,jdbcType=VARCHAR}, + + + #{addressno,jdbcType=VARCHAR}, + + + #{storeaddress,jdbcType=VARCHAR}, + + + #{leshuamerchantaddress,jdbcType=VARCHAR}, + + + #{address,jdbcType=VARCHAR}, + + + #{businesslicenseno,jdbcType=VARCHAR}, + + + #{businessstarttime,jdbcType=TIMESTAMP}, + + + #{businessendtime,jdbcType=TIMESTAMP}, + + + #{businesslicensepic,jdbcType=VARCHAR}, + + + #{storedesc,jdbcType=VARCHAR}, + + + #{logo,jdbcType=VARCHAR}, + + + #{creator,jdbcType=VARCHAR}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{openingtime,jdbcType=VARCHAR}, + + + #{status,jdbcType=VARCHAR}, + + + #{parentcode,jdbcType=VARCHAR}, + + + #{email,jdbcType=VARCHAR}, + + + #{isaccount,jdbcType=VARCHAR}, + + + #{loginname,jdbcType=VARCHAR}, + + + #{paymentcodeurl,jdbcType=VARCHAR}, + + + #{storeheadpic,jdbcType=VARCHAR}, + + + #{storeinsidepic,jdbcType=VARCHAR}, + + + #{cashpic,jdbcType=VARCHAR}, + + + #{productdesc,jdbcType=VARCHAR}, + + + #{rate,jdbcType=DOUBLE}, + + + #{alipaysource,jdbcType=VARCHAR}, + + + #{applymentid,jdbcType=VARCHAR}, + + + #{alistatus,jdbcType=VARCHAR}, + + + #{wechatstatus,jdbcType=VARCHAR}, + + + #{leshuastatus,jdbcType=VARCHAR}, + + + #{submchid,jdbcType=VARCHAR}, + + + #{apptokenauth,jdbcType=VARCHAR}, + + + #{leshuamchid,jdbcType=VARCHAR}, + + + #{leshuausername,jdbcType=VARCHAR}, + + + #{payecdemicswitch,jdbcType=VARCHAR}, + + + #{ismarket,jdbcType=VARCHAR}, + + + + + update tb_pluss_merchant_store + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + aliAccount = #{aliaccount,jdbcType=VARCHAR}, + + + aliMcc = #{alimcc,jdbcType=VARCHAR}, + + + mcc = #{mcc,jdbcType=VARCHAR}, + + + mccName = #{mccname,jdbcType=VARCHAR}, + + + storeId = #{storeid,jdbcType=VARCHAR}, + + + storeName = #{storename,jdbcType=VARCHAR}, + + + linkName = #{linkname,jdbcType=VARCHAR}, + + + linkPhone = #{linkphone,jdbcType=VARCHAR}, + + + addressNo = #{addressno,jdbcType=VARCHAR}, + + + storeAddress = #{storeaddress,jdbcType=VARCHAR}, + + + leshuaMerchantAddress = #{leshuamerchantaddress,jdbcType=VARCHAR}, + + + address = #{address,jdbcType=VARCHAR}, + + + businessLicenseNo = #{businesslicenseno,jdbcType=VARCHAR}, + + + businessStartTime = #{businessstarttime,jdbcType=TIMESTAMP}, + + + businessEndTime = #{businessendtime,jdbcType=TIMESTAMP}, + + + businessLicensePic = #{businesslicensepic,jdbcType=VARCHAR}, + + + storeDesc = #{storedesc,jdbcType=VARCHAR}, + + + logo = #{logo,jdbcType=VARCHAR}, + + + creator = #{creator,jdbcType=VARCHAR}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + openingTime = #{openingtime,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=VARCHAR}, + + + parentCode = #{parentcode,jdbcType=VARCHAR}, + + + email = #{email,jdbcType=VARCHAR}, + + + isAccount = #{isaccount,jdbcType=VARCHAR}, + + + loginName = #{loginname,jdbcType=VARCHAR}, + + + paymentCodeUrl = #{paymentcodeurl,jdbcType=VARCHAR}, + + + storeHeadPic = #{storeheadpic,jdbcType=VARCHAR}, + + + storeInsidePic = #{storeinsidepic,jdbcType=VARCHAR}, + + + cashPic = #{cashpic,jdbcType=VARCHAR}, + + + productDesc = #{productdesc,jdbcType=VARCHAR}, + + + rate = #{rate,jdbcType=DOUBLE}, + + + alipaySource = #{alipaysource,jdbcType=VARCHAR}, + + + applymentId = #{applymentid,jdbcType=VARCHAR}, + + + aliStatus = #{alistatus,jdbcType=VARCHAR}, + + + wechatStatus = #{wechatstatus,jdbcType=VARCHAR}, + + + leshuaStatus = #{leshuastatus,jdbcType=VARCHAR}, + + + subMchId = #{submchid,jdbcType=VARCHAR}, + + + appTokenAuth = #{apptokenauth,jdbcType=VARCHAR}, + + + leshuaMchId = #{leshuamchid,jdbcType=VARCHAR}, + + + leshuaUserName = #{leshuausername,jdbcType=VARCHAR}, + + + payEcdemicSwitch = #{payecdemicswitch,jdbcType=VARCHAR}, + + + isMarket = #{ismarket,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_store + set merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + aliAccount = #{aliaccount,jdbcType=VARCHAR}, + aliMcc = #{alimcc,jdbcType=VARCHAR}, + mcc = #{mcc,jdbcType=VARCHAR}, + mccName = #{mccname,jdbcType=VARCHAR}, + storeId = #{storeid,jdbcType=VARCHAR}, + storeName = #{storename,jdbcType=VARCHAR}, + linkName = #{linkname,jdbcType=VARCHAR}, + linkPhone = #{linkphone,jdbcType=VARCHAR}, + addressNo = #{addressno,jdbcType=VARCHAR}, + storeAddress = #{storeaddress,jdbcType=VARCHAR}, + leshuaMerchantAddress = #{leshuamerchantaddress,jdbcType=VARCHAR}, + address = #{address,jdbcType=VARCHAR}, + businessLicenseNo = #{businesslicenseno,jdbcType=VARCHAR}, + businessStartTime = #{businessstarttime,jdbcType=TIMESTAMP}, + businessEndTime = #{businessendtime,jdbcType=TIMESTAMP}, + businessLicensePic = #{businesslicensepic,jdbcType=VARCHAR}, + storeDesc = #{storedesc,jdbcType=VARCHAR}, + logo = #{logo,jdbcType=VARCHAR}, + creator = #{creator,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + openingTime = #{openingtime,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + parentCode = #{parentcode,jdbcType=VARCHAR}, + email = #{email,jdbcType=VARCHAR}, + isAccount = #{isaccount,jdbcType=VARCHAR}, + loginName = #{loginname,jdbcType=VARCHAR}, + paymentCodeUrl = #{paymentcodeurl,jdbcType=VARCHAR}, + storeHeadPic = #{storeheadpic,jdbcType=VARCHAR}, + storeInsidePic = #{storeinsidepic,jdbcType=VARCHAR}, + cashPic = #{cashpic,jdbcType=VARCHAR}, + productDesc = #{productdesc,jdbcType=VARCHAR}, + rate = #{rate,jdbcType=DOUBLE}, + alipaySource = #{alipaysource,jdbcType=VARCHAR}, + applymentId = #{applymentid,jdbcType=VARCHAR}, + aliStatus = #{alistatus,jdbcType=VARCHAR}, + wechatStatus = #{wechatstatus,jdbcType=VARCHAR}, + leshuaStatus = #{leshuastatus,jdbcType=VARCHAR}, + subMchId = #{submchid,jdbcType=VARCHAR}, + appTokenAuth = #{apptokenauth,jdbcType=VARCHAR}, + leshuaMchId = #{leshuamchid,jdbcType=VARCHAR}, + leshuaUserName = #{leshuausername,jdbcType=VARCHAR}, + payEcdemicSwitch = #{payecdemicswitch,jdbcType=VARCHAR}, + isMarket = #{ismarket,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantTransferCashMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantTransferCashMapper.xml new file mode 100644 index 0000000..daaaac6 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantTransferCashMapper.xml @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + id, cashAmt, userId, userName, status, cashTime, cashNo, createTime, remark + + + + delete from tb_pluss_merchant_transfer_cash + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_transfer_cash (id, cashAmt, userId, + userName, status, cashTime, + cashNo, createTime, remark + ) + values (#{id,jdbcType=INTEGER}, #{cashamt,jdbcType=DECIMAL}, #{userid,jdbcType=INTEGER}, + #{username,jdbcType=VARCHAR}, #{status,jdbcType=CHAR}, #{cashtime,jdbcType=TIMESTAMP}, + #{cashno,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{remark,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_merchant_transfer_cash + + + id, + + + cashAmt, + + + userId, + + + userName, + + + status, + + + cashTime, + + + cashNo, + + + createTime, + + + remark, + + + + + #{id,jdbcType=INTEGER}, + + + #{cashamt,jdbcType=DECIMAL}, + + + #{userid,jdbcType=INTEGER}, + + + #{username,jdbcType=VARCHAR}, + + + #{status,jdbcType=CHAR}, + + + #{cashtime,jdbcType=TIMESTAMP}, + + + #{cashno,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{remark,jdbcType=VARCHAR}, + + + + + update tb_pluss_merchant_transfer_cash + + + cashAmt = #{cashamt,jdbcType=DECIMAL}, + + + userId = #{userid,jdbcType=INTEGER}, + + + userName = #{username,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=CHAR}, + + + cashTime = #{cashtime,jdbcType=TIMESTAMP}, + + + cashNo = #{cashno,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_transfer_cash + set cashAmt = #{cashamt,jdbcType=DECIMAL}, + userId = #{userid,jdbcType=INTEGER}, + userName = #{username,jdbcType=VARCHAR}, + status = #{status,jdbcType=CHAR}, + cashTime = #{cashtime,jdbcType=TIMESTAMP}, + cashNo = #{cashno,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + remark = #{remark,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantTransferMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantTransferMapper.xml new file mode 100644 index 0000000..a729d49 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussMerchantTransferMapper.xml @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + id, merchantCode, alias, channelNo, channelId, amount, createDt, orderNo, content, + transTime, transNo, remark + + + + delete from tb_pluss_merchant_transfer + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_merchant_transfer (id, merchantCode, alias, + channelNo, channelId, amount, + createDt, orderNo, content, + transTime, transNo, remark + ) + values (#{id,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, #{alias,jdbcType=VARCHAR}, + #{channelno,jdbcType=VARCHAR}, #{channelid,jdbcType=INTEGER}, #{amount,jdbcType=DECIMAL}, + #{createdt,jdbcType=TIMESTAMP}, #{orderno,jdbcType=VARCHAR}, #{content,jdbcType=VARCHAR}, + #{transtime,jdbcType=TIMESTAMP}, #{transno,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_merchant_transfer + + + id, + + + merchantCode, + + + alias, + + + channelNo, + + + channelId, + + + amount, + + + createDt, + + + orderNo, + + + content, + + + transTime, + + + transNo, + + + remark, + + + + + #{id,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{alias,jdbcType=VARCHAR}, + + + #{channelno,jdbcType=VARCHAR}, + + + #{channelid,jdbcType=INTEGER}, + + + #{amount,jdbcType=DECIMAL}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{orderno,jdbcType=VARCHAR}, + + + #{content,jdbcType=VARCHAR}, + + + #{transtime,jdbcType=TIMESTAMP}, + + + #{transno,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + + + update tb_pluss_merchant_transfer + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + alias = #{alias,jdbcType=VARCHAR}, + + + channelNo = #{channelno,jdbcType=VARCHAR}, + + + channelId = #{channelid,jdbcType=INTEGER}, + + + amount = #{amount,jdbcType=DECIMAL}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + orderNo = #{orderno,jdbcType=VARCHAR}, + + + content = #{content,jdbcType=VARCHAR}, + + + transTime = #{transtime,jdbcType=TIMESTAMP}, + + + transNo = #{transno,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_merchant_transfer + set merchantCode = #{merchantcode,jdbcType=VARCHAR}, + alias = #{alias,jdbcType=VARCHAR}, + channelNo = #{channelno,jdbcType=VARCHAR}, + channelId = #{channelid,jdbcType=INTEGER}, + amount = #{amount,jdbcType=DECIMAL}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + orderNo = #{orderno,jdbcType=VARCHAR}, + content = #{content,jdbcType=VARCHAR}, + transTime = #{transtime,jdbcType=TIMESTAMP}, + transNo = #{transno,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussNewAreaMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussNewAreaMapper.xml new file mode 100644 index 0000000..aedd806 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussNewAreaMapper.xml @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + + id, parentId, name, shortName, longitude, latitude, level, sort, status, open + + + + delete from tb_pluss_new_area + where id = #{id,jdbcType=BIGINT} + + + insert into tb_pluss_new_area (id, parentId, name, + shortName, longitude, latitude, + level, sort, status, + open) + values (#{id,jdbcType=BIGINT}, #{parentid,jdbcType=BIGINT}, #{name,jdbcType=VARCHAR}, + #{shortname,jdbcType=VARCHAR}, #{longitude,jdbcType=REAL}, #{latitude,jdbcType=REAL}, + #{level,jdbcType=TINYINT}, #{sort,jdbcType=TINYINT}, #{status,jdbcType=TINYINT}, + #{open,jdbcType=TINYINT}) + + + insert into tb_pluss_new_area + + + id, + + + parentId, + + + name, + + + shortName, + + + longitude, + + + latitude, + + + level, + + + sort, + + + status, + + + open, + + + + + #{id,jdbcType=BIGINT}, + + + #{parentid,jdbcType=BIGINT}, + + + #{name,jdbcType=VARCHAR}, + + + #{shortname,jdbcType=VARCHAR}, + + + #{longitude,jdbcType=REAL}, + + + #{latitude,jdbcType=REAL}, + + + #{level,jdbcType=TINYINT}, + + + #{sort,jdbcType=TINYINT}, + + + #{status,jdbcType=TINYINT}, + + + #{open,jdbcType=TINYINT}, + + + + + update tb_pluss_new_area + + + parentId = #{parentid,jdbcType=BIGINT}, + + + name = #{name,jdbcType=VARCHAR}, + + + shortName = #{shortname,jdbcType=VARCHAR}, + + + longitude = #{longitude,jdbcType=REAL}, + + + latitude = #{latitude,jdbcType=REAL}, + + + level = #{level,jdbcType=TINYINT}, + + + sort = #{sort,jdbcType=TINYINT}, + + + status = #{status,jdbcType=TINYINT}, + + + open = #{open,jdbcType=TINYINT}, + + + where id = #{id,jdbcType=BIGINT} + + + update tb_pluss_new_area + set parentId = #{parentid,jdbcType=BIGINT}, + name = #{name,jdbcType=VARCHAR}, + shortName = #{shortname,jdbcType=VARCHAR}, + longitude = #{longitude,jdbcType=REAL}, + latitude = #{latitude,jdbcType=REAL}, + level = #{level,jdbcType=TINYINT}, + sort = #{sort,jdbcType=TINYINT}, + status = #{status,jdbcType=TINYINT}, + open = #{open,jdbcType=TINYINT} + where id = #{id,jdbcType=BIGINT} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussNewMccInfoMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussNewMccInfoMapper.xml new file mode 100644 index 0000000..f2ad73b --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussNewMccInfoMapper.xml @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + F_id, F_mcc_code, F_mcc_txt, F_father_code, F_grandpa_code, F_father_txt, F_grandpa_txt, + F_commission, F_max_commission_one_transaction, F_mcc_type, F_mcc_type_txt, F_daily_limit, + F_no_pin_flag + + + + delete from tb_pluss_new_mcc_info + where F_id = #{fId,jdbcType=INTEGER} + + + insert into tb_pluss_new_mcc_info (F_id, F_mcc_code, F_mcc_txt, + F_father_code, F_grandpa_code, F_father_txt, + F_grandpa_txt, F_commission, F_max_commission_one_transaction, + F_mcc_type, F_mcc_type_txt, F_daily_limit, + F_no_pin_flag) + values (#{fId,jdbcType=INTEGER}, #{fMccCode,jdbcType=VARCHAR}, #{fMccTxt,jdbcType=VARCHAR}, + #{fFatherCode,jdbcType=VARCHAR}, #{fGrandpaCode,jdbcType=VARCHAR}, #{fFatherTxt,jdbcType=VARCHAR}, + #{fGrandpaTxt,jdbcType=VARCHAR}, #{fCommission,jdbcType=INTEGER}, #{fMaxCommissionOneTransaction,jdbcType=INTEGER}, + #{fMccType,jdbcType=TINYINT}, #{fMccTypeTxt,jdbcType=VARCHAR}, #{fDailyLimit,jdbcType=INTEGER}, + #{fNoPinFlag,jdbcType=INTEGER}) + + + insert into tb_pluss_new_mcc_info + + + F_id, + + + F_mcc_code, + + + F_mcc_txt, + + + F_father_code, + + + F_grandpa_code, + + + F_father_txt, + + + F_grandpa_txt, + + + F_commission, + + + F_max_commission_one_transaction, + + + F_mcc_type, + + + F_mcc_type_txt, + + + F_daily_limit, + + + F_no_pin_flag, + + + + + #{fId,jdbcType=INTEGER}, + + + #{fMccCode,jdbcType=VARCHAR}, + + + #{fMccTxt,jdbcType=VARCHAR}, + + + #{fFatherCode,jdbcType=VARCHAR}, + + + #{fGrandpaCode,jdbcType=VARCHAR}, + + + #{fFatherTxt,jdbcType=VARCHAR}, + + + #{fGrandpaTxt,jdbcType=VARCHAR}, + + + #{fCommission,jdbcType=INTEGER}, + + + #{fMaxCommissionOneTransaction,jdbcType=INTEGER}, + + + #{fMccType,jdbcType=TINYINT}, + + + #{fMccTypeTxt,jdbcType=VARCHAR}, + + + #{fDailyLimit,jdbcType=INTEGER}, + + + #{fNoPinFlag,jdbcType=INTEGER}, + + + + + update tb_pluss_new_mcc_info + + + F_mcc_code = #{fMccCode,jdbcType=VARCHAR}, + + + F_mcc_txt = #{fMccTxt,jdbcType=VARCHAR}, + + + F_father_code = #{fFatherCode,jdbcType=VARCHAR}, + + + F_grandpa_code = #{fGrandpaCode,jdbcType=VARCHAR}, + + + F_father_txt = #{fFatherTxt,jdbcType=VARCHAR}, + + + F_grandpa_txt = #{fGrandpaTxt,jdbcType=VARCHAR}, + + + F_commission = #{fCommission,jdbcType=INTEGER}, + + + F_max_commission_one_transaction = #{fMaxCommissionOneTransaction,jdbcType=INTEGER}, + + + F_mcc_type = #{fMccType,jdbcType=TINYINT}, + + + F_mcc_type_txt = #{fMccTypeTxt,jdbcType=VARCHAR}, + + + F_daily_limit = #{fDailyLimit,jdbcType=INTEGER}, + + + F_no_pin_flag = #{fNoPinFlag,jdbcType=INTEGER}, + + + where F_id = #{fId,jdbcType=INTEGER} + + + update tb_pluss_new_mcc_info + set F_mcc_code = #{fMccCode,jdbcType=VARCHAR}, + F_mcc_txt = #{fMccTxt,jdbcType=VARCHAR}, + F_father_code = #{fFatherCode,jdbcType=VARCHAR}, + F_grandpa_code = #{fGrandpaCode,jdbcType=VARCHAR}, + F_father_txt = #{fFatherTxt,jdbcType=VARCHAR}, + F_grandpa_txt = #{fGrandpaTxt,jdbcType=VARCHAR}, + F_commission = #{fCommission,jdbcType=INTEGER}, + F_max_commission_one_transaction = #{fMaxCommissionOneTransaction,jdbcType=INTEGER}, + F_mcc_type = #{fMccType,jdbcType=TINYINT}, + F_mcc_type_txt = #{fMccTypeTxt,jdbcType=VARCHAR}, + F_daily_limit = #{fDailyLimit,jdbcType=INTEGER}, + F_no_pin_flag = #{fNoPinFlag,jdbcType=INTEGER} + where F_id = #{fId,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussNoticeMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussNoticeMapper.xml new file mode 100644 index 0000000..6517ddc --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussNoticeMapper.xml @@ -0,0 +1,236 @@ + + + + + + + + + + + + + + + + + + + + + + + + id, userId, userName, typeFirst, typeSecond, title, desc, url, createDt, noticeCode, + orderNumber, isDeal, isApply, uniqueKey + + + conrtent + + + + delete from tb_pluss_notice + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_notice (id, userId, userName, + typeFirst, typeSecond, title, + desc, url, createDt, + noticeCode, orderNumber, isDeal, + isApply, uniqueKey, conrtent + ) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=VARCHAR}, #{username,jdbcType=VARCHAR}, + #{typefirst,jdbcType=INTEGER}, #{typesecond,jdbcType=INTEGER}, #{title,jdbcType=VARCHAR}, + #{desc,jdbcType=VARCHAR}, #{url,jdbcType=VARCHAR}, #{createdt,jdbcType=TIMESTAMP}, + #{noticecode,jdbcType=VARCHAR}, #{ordernumber,jdbcType=VARCHAR}, #{isdeal,jdbcType=INTEGER}, + #{isapply,jdbcType=INTEGER}, #{uniquekey,jdbcType=VARCHAR}, #{conrtent,jdbcType=LONGVARCHAR} + ) + + + insert into tb_pluss_notice + + + id, + + + userId, + + + userName, + + + typeFirst, + + + typeSecond, + + + title, + + + desc, + + + url, + + + createDt, + + + noticeCode, + + + orderNumber, + + + isDeal, + + + isApply, + + + uniqueKey, + + + conrtent, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=VARCHAR}, + + + #{username,jdbcType=VARCHAR}, + + + #{typefirst,jdbcType=INTEGER}, + + + #{typesecond,jdbcType=INTEGER}, + + + #{title,jdbcType=VARCHAR}, + + + #{desc,jdbcType=VARCHAR}, + + + #{url,jdbcType=VARCHAR}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{noticecode,jdbcType=VARCHAR}, + + + #{ordernumber,jdbcType=VARCHAR}, + + + #{isdeal,jdbcType=INTEGER}, + + + #{isapply,jdbcType=INTEGER}, + + + #{uniquekey,jdbcType=VARCHAR}, + + + #{conrtent,jdbcType=LONGVARCHAR}, + + + + + update tb_pluss_notice + + + userId = #{userid,jdbcType=VARCHAR}, + + + userName = #{username,jdbcType=VARCHAR}, + + + typeFirst = #{typefirst,jdbcType=INTEGER}, + + + typeSecond = #{typesecond,jdbcType=INTEGER}, + + + title = #{title,jdbcType=VARCHAR}, + + + desc = #{desc,jdbcType=VARCHAR}, + + + url = #{url,jdbcType=VARCHAR}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + noticeCode = #{noticecode,jdbcType=VARCHAR}, + + + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + + + isDeal = #{isdeal,jdbcType=INTEGER}, + + + isApply = #{isapply,jdbcType=INTEGER}, + + + uniqueKey = #{uniquekey,jdbcType=VARCHAR}, + + + conrtent = #{conrtent,jdbcType=LONGVARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_notice + set userId = #{userid,jdbcType=VARCHAR}, + userName = #{username,jdbcType=VARCHAR}, + typeFirst = #{typefirst,jdbcType=INTEGER}, + typeSecond = #{typesecond,jdbcType=INTEGER}, + title = #{title,jdbcType=VARCHAR}, + desc = #{desc,jdbcType=VARCHAR}, + url = #{url,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + noticeCode = #{noticecode,jdbcType=VARCHAR}, + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + isDeal = #{isdeal,jdbcType=INTEGER}, + isApply = #{isapply,jdbcType=INTEGER}, + uniqueKey = #{uniquekey,jdbcType=VARCHAR}, + conrtent = #{conrtent,jdbcType=LONGVARCHAR} + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_notice + set userId = #{userid,jdbcType=VARCHAR}, + userName = #{username,jdbcType=VARCHAR}, + typeFirst = #{typefirst,jdbcType=INTEGER}, + typeSecond = #{typesecond,jdbcType=INTEGER}, + title = #{title,jdbcType=VARCHAR}, + desc = #{desc,jdbcType=VARCHAR}, + url = #{url,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + noticeCode = #{noticecode,jdbcType=VARCHAR}, + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + isDeal = #{isdeal,jdbcType=INTEGER}, + isApply = #{isapply,jdbcType=INTEGER}, + uniqueKey = #{uniquekey,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussNoticeReadRecordMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussNoticeReadRecordMapper.xml new file mode 100644 index 0000000..e21ab2b --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussNoticeReadRecordMapper.xml @@ -0,0 +1,93 @@ + + + + + + + + + + + + id, userId, type, noticeId, createTime + + + + delete from tb_pluss_notice_read_record + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_notice_read_record (id, userId, type, + noticeId, createTime) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=VARCHAR}, #{type,jdbcType=VARCHAR}, + #{noticeid,jdbcType=INTEGER}, #{createtime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_notice_read_record + + + id, + + + userId, + + + type, + + + noticeId, + + + createTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=VARCHAR}, + + + #{type,jdbcType=VARCHAR}, + + + #{noticeid,jdbcType=INTEGER}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_notice_read_record + + + userId = #{userid,jdbcType=VARCHAR}, + + + type = #{type,jdbcType=VARCHAR}, + + + noticeId = #{noticeid,jdbcType=INTEGER}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_notice_read_record + set userId = #{userid,jdbcType=VARCHAR}, + type = #{type,jdbcType=VARCHAR}, + noticeId = #{noticeid,jdbcType=INTEGER}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussNoticeTemplateMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussNoticeTemplateMapper.xml new file mode 100644 index 0000000..d0d14ae --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussNoticeTemplateMapper.xml @@ -0,0 +1,93 @@ + + + + + + + + + + + + id, type, variable, content, createTime + + + + delete from tb_pluss_notice_template + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_notice_template (id, type, variable, + content, createTime) + values (#{id,jdbcType=INTEGER}, #{type,jdbcType=VARCHAR}, #{variable,jdbcType=VARCHAR}, + #{content,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_notice_template + + + id, + + + type, + + + variable, + + + content, + + + createTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{type,jdbcType=VARCHAR}, + + + #{variable,jdbcType=VARCHAR}, + + + #{content,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_notice_template + + + type = #{type,jdbcType=VARCHAR}, + + + variable = #{variable,jdbcType=VARCHAR}, + + + content = #{content,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_notice_template + set type = #{type,jdbcType=VARCHAR}, + variable = #{variable,jdbcType=VARCHAR}, + content = #{content,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussNotificationMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussNotificationMapper.xml new file mode 100644 index 0000000..27d6cee --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussNotificationMapper.xml @@ -0,0 +1,93 @@ + + + + + + + + + + + + id, title, content, status, createTime + + + + delete from tb_pluss_notification + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_notification (id, title, content, + status, createTime) + values (#{id,jdbcType=INTEGER}, #{title,jdbcType=VARCHAR}, #{content,jdbcType=VARCHAR}, + #{status,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_notification + + + id, + + + title, + + + content, + + + status, + + + createTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{title,jdbcType=VARCHAR}, + + + #{content,jdbcType=VARCHAR}, + + + #{status,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_notification + + + title = #{title,jdbcType=VARCHAR}, + + + content = #{content,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_notification + set title = #{title,jdbcType=VARCHAR}, + content = #{content,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussOfficialActivityMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussOfficialActivityMapper.xml new file mode 100644 index 0000000..6f6c184 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussOfficialActivityMapper.xml @@ -0,0 +1,287 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, officName, officTitle, officContent, officImgUrl, toImgUrl, startTime, endTime, + status, remark, createTime, createBy, updateTime, officDetailImgUrl, activityGroupNo, + groupBy, actType, roleType + + + officRule + + + + delete from tb_pluss_official_activity + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_official_activity (id, officName, officTitle, + officContent, officImgUrl, toImgUrl, + startTime, endTime, status, + remark, createTime, createBy, + updateTime, officDetailImgUrl, activityGroupNo, + groupBy, actType, roleType, + officRule) + values (#{id,jdbcType=INTEGER}, #{officname,jdbcType=VARCHAR}, #{offictitle,jdbcType=VARCHAR}, + #{officcontent,jdbcType=VARCHAR}, #{officimgurl,jdbcType=VARCHAR}, #{toimgurl,jdbcType=VARCHAR}, + #{starttime,jdbcType=TIMESTAMP}, #{endtime,jdbcType=TIMESTAMP}, #{status,jdbcType=VARCHAR}, + #{remark,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{createby,jdbcType=VARCHAR}, + #{updatetime,jdbcType=TIMESTAMP}, #{officdetailimgurl,jdbcType=VARCHAR}, #{activitygroupno,jdbcType=VARCHAR}, + #{groupby,jdbcType=VARCHAR}, #{acttype,jdbcType=CHAR}, #{roletype,jdbcType=VARCHAR}, + #{officrule,jdbcType=LONGVARCHAR}) + + + insert into tb_pluss_official_activity + + + id, + + + officName, + + + officTitle, + + + officContent, + + + officImgUrl, + + + toImgUrl, + + + startTime, + + + endTime, + + + status, + + + remark, + + + createTime, + + + createBy, + + + updateTime, + + + officDetailImgUrl, + + + activityGroupNo, + + + groupBy, + + + actType, + + + roleType, + + + officRule, + + + + + #{id,jdbcType=INTEGER}, + + + #{officname,jdbcType=VARCHAR}, + + + #{offictitle,jdbcType=VARCHAR}, + + + #{officcontent,jdbcType=VARCHAR}, + + + #{officimgurl,jdbcType=VARCHAR}, + + + #{toimgurl,jdbcType=VARCHAR}, + + + #{starttime,jdbcType=TIMESTAMP}, + + + #{endtime,jdbcType=TIMESTAMP}, + + + #{status,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{createby,jdbcType=VARCHAR}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{officdetailimgurl,jdbcType=VARCHAR}, + + + #{activitygroupno,jdbcType=VARCHAR}, + + + #{groupby,jdbcType=VARCHAR}, + + + #{acttype,jdbcType=CHAR}, + + + #{roletype,jdbcType=VARCHAR}, + + + #{officrule,jdbcType=LONGVARCHAR}, + + + + + update tb_pluss_official_activity + + + officName = #{officname,jdbcType=VARCHAR}, + + + officTitle = #{offictitle,jdbcType=VARCHAR}, + + + officContent = #{officcontent,jdbcType=VARCHAR}, + + + officImgUrl = #{officimgurl,jdbcType=VARCHAR}, + + + toImgUrl = #{toimgurl,jdbcType=VARCHAR}, + + + startTime = #{starttime,jdbcType=TIMESTAMP}, + + + endTime = #{endtime,jdbcType=TIMESTAMP}, + + + status = #{status,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + createBy = #{createby,jdbcType=VARCHAR}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + officDetailImgUrl = #{officdetailimgurl,jdbcType=VARCHAR}, + + + activityGroupNo = #{activitygroupno,jdbcType=VARCHAR}, + + + groupBy = #{groupby,jdbcType=VARCHAR}, + + + actType = #{acttype,jdbcType=CHAR}, + + + roleType = #{roletype,jdbcType=VARCHAR}, + + + officRule = #{officrule,jdbcType=LONGVARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_official_activity + set officName = #{officname,jdbcType=VARCHAR}, + officTitle = #{offictitle,jdbcType=VARCHAR}, + officContent = #{officcontent,jdbcType=VARCHAR}, + officImgUrl = #{officimgurl,jdbcType=VARCHAR}, + toImgUrl = #{toimgurl,jdbcType=VARCHAR}, + startTime = #{starttime,jdbcType=TIMESTAMP}, + endTime = #{endtime,jdbcType=TIMESTAMP}, + status = #{status,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + createBy = #{createby,jdbcType=VARCHAR}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + officDetailImgUrl = #{officdetailimgurl,jdbcType=VARCHAR}, + activityGroupNo = #{activitygroupno,jdbcType=VARCHAR}, + groupBy = #{groupby,jdbcType=VARCHAR}, + actType = #{acttype,jdbcType=CHAR}, + roleType = #{roletype,jdbcType=VARCHAR}, + officRule = #{officrule,jdbcType=LONGVARCHAR} + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_official_activity + set officName = #{officname,jdbcType=VARCHAR}, + officTitle = #{offictitle,jdbcType=VARCHAR}, + officContent = #{officcontent,jdbcType=VARCHAR}, + officImgUrl = #{officimgurl,jdbcType=VARCHAR}, + toImgUrl = #{toimgurl,jdbcType=VARCHAR}, + startTime = #{starttime,jdbcType=TIMESTAMP}, + endTime = #{endtime,jdbcType=TIMESTAMP}, + status = #{status,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + createBy = #{createby,jdbcType=VARCHAR}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + officDetailImgUrl = #{officdetailimgurl,jdbcType=VARCHAR}, + activityGroupNo = #{activitygroupno,jdbcType=VARCHAR}, + groupBy = #{groupby,jdbcType=VARCHAR}, + actType = #{acttype,jdbcType=CHAR}, + roleType = #{roletype,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussOfficialGoodsExchangeMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussOfficialGoodsExchangeMapper.xml new file mode 100644 index 0000000..eb52f7a --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussOfficialGoodsExchangeMapper.xml @@ -0,0 +1,199 @@ + + + + + + + + + + + + + + + + + + + + + id, userId, goodId, createTime, address, phone, userName, price, name, status, orderNumber, + expressNo, deliveryStatus, deliveryTime + + + + delete from tb_pluss_official_goods_exchange + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_official_goods_exchange (id, userId, goodId, + createTime, address, phone, + userName, price, name, + status, orderNumber, expressNo, + deliveryStatus, deliveryTime) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{goodid,jdbcType=INTEGER}, + #{createtime,jdbcType=TIMESTAMP}, #{address,jdbcType=VARCHAR}, #{phone,jdbcType=VARCHAR}, + #{username,jdbcType=VARCHAR}, #{price,jdbcType=DECIMAL}, #{name,jdbcType=VARCHAR}, + #{status,jdbcType=INTEGER}, #{ordernumber,jdbcType=VARCHAR}, #{expressno,jdbcType=VARCHAR}, + #{deliverystatus,jdbcType=INTEGER}, #{deliverytime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_official_goods_exchange + + + id, + + + userId, + + + goodId, + + + createTime, + + + address, + + + phone, + + + userName, + + + price, + + + name, + + + status, + + + orderNumber, + + + expressNo, + + + deliveryStatus, + + + deliveryTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{goodid,jdbcType=INTEGER}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{address,jdbcType=VARCHAR}, + + + #{phone,jdbcType=VARCHAR}, + + + #{username,jdbcType=VARCHAR}, + + + #{price,jdbcType=DECIMAL}, + + + #{name,jdbcType=VARCHAR}, + + + #{status,jdbcType=INTEGER}, + + + #{ordernumber,jdbcType=VARCHAR}, + + + #{expressno,jdbcType=VARCHAR}, + + + #{deliverystatus,jdbcType=INTEGER}, + + + #{deliverytime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_official_goods_exchange + + + userId = #{userid,jdbcType=INTEGER}, + + + goodId = #{goodid,jdbcType=INTEGER}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + address = #{address,jdbcType=VARCHAR}, + + + phone = #{phone,jdbcType=VARCHAR}, + + + userName = #{username,jdbcType=VARCHAR}, + + + price = #{price,jdbcType=DECIMAL}, + + + name = #{name,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=INTEGER}, + + + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + + + expressNo = #{expressno,jdbcType=VARCHAR}, + + + deliveryStatus = #{deliverystatus,jdbcType=INTEGER}, + + + deliveryTime = #{deliverytime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_official_goods_exchange + set userId = #{userid,jdbcType=INTEGER}, + goodId = #{goodid,jdbcType=INTEGER}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + address = #{address,jdbcType=VARCHAR}, + phone = #{phone,jdbcType=VARCHAR}, + userName = #{username,jdbcType=VARCHAR}, + price = #{price,jdbcType=DECIMAL}, + name = #{name,jdbcType=VARCHAR}, + status = #{status,jdbcType=INTEGER}, + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + expressNo = #{expressno,jdbcType=VARCHAR}, + deliveryStatus = #{deliverystatus,jdbcType=INTEGER}, + deliveryTime = #{deliverytime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussOfficialGoodsMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussOfficialGoodsMapper.xml new file mode 100644 index 0000000..bba96c6 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussOfficialGoodsMapper.xml @@ -0,0 +1,198 @@ + + + + + + + + + + + + + + + + + + + + + id, goodName, goodPrice, status, toImgUrl, imgUrl, createTime, isPostage, postageFee, + deductRule, deductValue + + + goodDesc + + + + delete from tb_pluss_official_goods + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_official_goods (id, goodName, goodPrice, + status, toImgUrl, imgUrl, + createTime, isPostage, postageFee, + deductRule, deductValue, goodDesc + ) + values (#{id,jdbcType=INTEGER}, #{goodname,jdbcType=VARCHAR}, #{goodprice,jdbcType=DECIMAL}, + #{status,jdbcType=VARCHAR}, #{toimgurl,jdbcType=VARCHAR}, #{imgurl,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{ispostage,jdbcType=INTEGER}, #{postagefee,jdbcType=DECIMAL}, + #{deductrule,jdbcType=INTEGER}, #{deductvalue,jdbcType=DECIMAL}, #{gooddesc,jdbcType=LONGVARCHAR} + ) + + + insert into tb_pluss_official_goods + + + id, + + + goodName, + + + goodPrice, + + + status, + + + toImgUrl, + + + imgUrl, + + + createTime, + + + isPostage, + + + postageFee, + + + deductRule, + + + deductValue, + + + goodDesc, + + + + + #{id,jdbcType=INTEGER}, + + + #{goodname,jdbcType=VARCHAR}, + + + #{goodprice,jdbcType=DECIMAL}, + + + #{status,jdbcType=VARCHAR}, + + + #{toimgurl,jdbcType=VARCHAR}, + + + #{imgurl,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{ispostage,jdbcType=INTEGER}, + + + #{postagefee,jdbcType=DECIMAL}, + + + #{deductrule,jdbcType=INTEGER}, + + + #{deductvalue,jdbcType=DECIMAL}, + + + #{gooddesc,jdbcType=LONGVARCHAR}, + + + + + update tb_pluss_official_goods + + + goodName = #{goodname,jdbcType=VARCHAR}, + + + goodPrice = #{goodprice,jdbcType=DECIMAL}, + + + status = #{status,jdbcType=VARCHAR}, + + + toImgUrl = #{toimgurl,jdbcType=VARCHAR}, + + + imgUrl = #{imgurl,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + isPostage = #{ispostage,jdbcType=INTEGER}, + + + postageFee = #{postagefee,jdbcType=DECIMAL}, + + + deductRule = #{deductrule,jdbcType=INTEGER}, + + + deductValue = #{deductvalue,jdbcType=DECIMAL}, + + + goodDesc = #{gooddesc,jdbcType=LONGVARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_official_goods + set goodName = #{goodname,jdbcType=VARCHAR}, + goodPrice = #{goodprice,jdbcType=DECIMAL}, + status = #{status,jdbcType=VARCHAR}, + toImgUrl = #{toimgurl,jdbcType=VARCHAR}, + imgUrl = #{imgurl,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + isPostage = #{ispostage,jdbcType=INTEGER}, + postageFee = #{postagefee,jdbcType=DECIMAL}, + deductRule = #{deductrule,jdbcType=INTEGER}, + deductValue = #{deductvalue,jdbcType=DECIMAL}, + goodDesc = #{gooddesc,jdbcType=LONGVARCHAR} + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_official_goods + set goodName = #{goodname,jdbcType=VARCHAR}, + goodPrice = #{goodprice,jdbcType=DECIMAL}, + status = #{status,jdbcType=VARCHAR}, + toImgUrl = #{toimgurl,jdbcType=VARCHAR}, + imgUrl = #{imgurl,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + isPostage = #{ispostage,jdbcType=INTEGER}, + postageFee = #{postagefee,jdbcType=DECIMAL}, + deductRule = #{deductrule,jdbcType=INTEGER}, + deductValue = #{deductvalue,jdbcType=DECIMAL} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussOpenAccountConfigMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussOpenAccountConfigMapper.xml new file mode 100644 index 0000000..7f8f062 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussOpenAccountConfigMapper.xml @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + id, roleCode, type, provinceCode, cityCode, areaCode, provinceName, cityName, areaName, + level, rewardAmt, createTime + + + + delete from tb_pluss_open_account_config + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_open_account_config (id, roleCode, type, + provinceCode, cityCode, areaCode, + provinceName, cityName, areaName, + level, rewardAmt, createTime + ) + values (#{id,jdbcType=INTEGER}, #{rolecode,jdbcType=VARCHAR}, #{type,jdbcType=VARCHAR}, + #{provincecode,jdbcType=VARCHAR}, #{citycode,jdbcType=VARCHAR}, #{areacode,jdbcType=VARCHAR}, + #{provincename,jdbcType=VARCHAR}, #{cityname,jdbcType=VARCHAR}, #{areaname,jdbcType=VARCHAR}, + #{level,jdbcType=INTEGER}, #{rewardamt,jdbcType=DECIMAL}, #{createtime,jdbcType=TIMESTAMP} + ) + + + insert into tb_pluss_open_account_config + + + id, + + + roleCode, + + + type, + + + provinceCode, + + + cityCode, + + + areaCode, + + + provinceName, + + + cityName, + + + areaName, + + + level, + + + rewardAmt, + + + createTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{rolecode,jdbcType=VARCHAR}, + + + #{type,jdbcType=VARCHAR}, + + + #{provincecode,jdbcType=VARCHAR}, + + + #{citycode,jdbcType=VARCHAR}, + + + #{areacode,jdbcType=VARCHAR}, + + + #{provincename,jdbcType=VARCHAR}, + + + #{cityname,jdbcType=VARCHAR}, + + + #{areaname,jdbcType=VARCHAR}, + + + #{level,jdbcType=INTEGER}, + + + #{rewardamt,jdbcType=DECIMAL}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_open_account_config + + + roleCode = #{rolecode,jdbcType=VARCHAR}, + + + type = #{type,jdbcType=VARCHAR}, + + + provinceCode = #{provincecode,jdbcType=VARCHAR}, + + + cityCode = #{citycode,jdbcType=VARCHAR}, + + + areaCode = #{areacode,jdbcType=VARCHAR}, + + + provinceName = #{provincename,jdbcType=VARCHAR}, + + + cityName = #{cityname,jdbcType=VARCHAR}, + + + areaName = #{areaname,jdbcType=VARCHAR}, + + + level = #{level,jdbcType=INTEGER}, + + + rewardAmt = #{rewardamt,jdbcType=DECIMAL}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_open_account_config + set roleCode = #{rolecode,jdbcType=VARCHAR}, + type = #{type,jdbcType=VARCHAR}, + provinceCode = #{provincecode,jdbcType=VARCHAR}, + cityCode = #{citycode,jdbcType=VARCHAR}, + areaCode = #{areacode,jdbcType=VARCHAR}, + provinceName = #{provincename,jdbcType=VARCHAR}, + cityName = #{cityname,jdbcType=VARCHAR}, + areaName = #{areaname,jdbcType=VARCHAR}, + level = #{level,jdbcType=INTEGER}, + rewardAmt = #{rewardamt,jdbcType=DECIMAL}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussOpenAccountRecordMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussOpenAccountRecordMapper.xml new file mode 100644 index 0000000..bdb3bb6 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussOpenAccountRecordMapper.xml @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + id, userId, merchantName, orderNumber, orderAmt, goodCode, goodName, type, rewardAmt, + status, rewardUserId, areaCode, areaName, createTime, createDate, roleCode + + + + delete from tb_pluss_open_account_record + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_open_account_record (id, userId, merchantName, + orderNumber, orderAmt, goodCode, + goodName, type, rewardAmt, + status, rewardUserId, areaCode, + areaName, createTime, createDate, + roleCode) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{merchantname,jdbcType=VARCHAR}, + #{ordernumber,jdbcType=VARCHAR}, #{orderamt,jdbcType=DECIMAL}, #{goodcode,jdbcType=VARCHAR}, + #{goodname,jdbcType=VARCHAR}, #{type,jdbcType=VARCHAR}, #{rewardamt,jdbcType=DECIMAL}, + #{status,jdbcType=VARCHAR}, #{rewarduserid,jdbcType=INTEGER}, #{areacode,jdbcType=VARCHAR}, + #{areaname,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{createdate,jdbcType=DATE}, + #{rolecode,jdbcType=VARCHAR}) + + + insert into tb_pluss_open_account_record + + + id, + + + userId, + + + merchantName, + + + orderNumber, + + + orderAmt, + + + goodCode, + + + goodName, + + + type, + + + rewardAmt, + + + status, + + + rewardUserId, + + + areaCode, + + + areaName, + + + createTime, + + + createDate, + + + roleCode, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{ordernumber,jdbcType=VARCHAR}, + + + #{orderamt,jdbcType=DECIMAL}, + + + #{goodcode,jdbcType=VARCHAR}, + + + #{goodname,jdbcType=VARCHAR}, + + + #{type,jdbcType=VARCHAR}, + + + #{rewardamt,jdbcType=DECIMAL}, + + + #{status,jdbcType=VARCHAR}, + + + #{rewarduserid,jdbcType=INTEGER}, + + + #{areacode,jdbcType=VARCHAR}, + + + #{areaname,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{createdate,jdbcType=DATE}, + + + #{rolecode,jdbcType=VARCHAR}, + + + + + update tb_pluss_open_account_record + + + userId = #{userid,jdbcType=INTEGER}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + + + orderAmt = #{orderamt,jdbcType=DECIMAL}, + + + goodCode = #{goodcode,jdbcType=VARCHAR}, + + + goodName = #{goodname,jdbcType=VARCHAR}, + + + type = #{type,jdbcType=VARCHAR}, + + + rewardAmt = #{rewardamt,jdbcType=DECIMAL}, + + + status = #{status,jdbcType=VARCHAR}, + + + rewardUserId = #{rewarduserid,jdbcType=INTEGER}, + + + areaCode = #{areacode,jdbcType=VARCHAR}, + + + areaName = #{areaname,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + createDate = #{createdate,jdbcType=DATE}, + + + roleCode = #{rolecode,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_open_account_record + set userId = #{userid,jdbcType=INTEGER}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + orderAmt = #{orderamt,jdbcType=DECIMAL}, + goodCode = #{goodcode,jdbcType=VARCHAR}, + goodName = #{goodname,jdbcType=VARCHAR}, + type = #{type,jdbcType=VARCHAR}, + rewardAmt = #{rewardamt,jdbcType=DECIMAL}, + status = #{status,jdbcType=VARCHAR}, + rewardUserId = #{rewarduserid,jdbcType=INTEGER}, + areaCode = #{areacode,jdbcType=VARCHAR}, + areaName = #{areaname,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + createDate = #{createdate,jdbcType=DATE}, + roleCode = #{rolecode,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussOperationRecordMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussOperationRecordMapper.xml new file mode 100644 index 0000000..d510a0e --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussOperationRecordMapper.xml @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + id, operator, dictValue, userId, remark, createTime, ip + + + extension + + + + delete from tb_pluss_operation_record + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_operation_record (id, operator, dictValue, + userId, remark, createTime, + ip, extension) + values (#{id,jdbcType=INTEGER}, #{operator,jdbcType=VARCHAR}, #{dictvalue,jdbcType=VARCHAR}, + #{userid,jdbcType=INTEGER}, #{remark,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, + #{ip,jdbcType=VARCHAR}, #{extension,jdbcType=LONGVARCHAR}) + + + insert into tb_pluss_operation_record + + + id, + + + operator, + + + dictValue, + + + userId, + + + remark, + + + createTime, + + + ip, + + + extension, + + + + + #{id,jdbcType=INTEGER}, + + + #{operator,jdbcType=VARCHAR}, + + + #{dictvalue,jdbcType=VARCHAR}, + + + #{userid,jdbcType=INTEGER}, + + + #{remark,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{ip,jdbcType=VARCHAR}, + + + #{extension,jdbcType=LONGVARCHAR}, + + + + + update tb_pluss_operation_record + + + operator = #{operator,jdbcType=VARCHAR}, + + + dictValue = #{dictvalue,jdbcType=VARCHAR}, + + + userId = #{userid,jdbcType=INTEGER}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + ip = #{ip,jdbcType=VARCHAR}, + + + extension = #{extension,jdbcType=LONGVARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_operation_record + set operator = #{operator,jdbcType=VARCHAR}, + dictValue = #{dictvalue,jdbcType=VARCHAR}, + userId = #{userid,jdbcType=INTEGER}, + remark = #{remark,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + ip = #{ip,jdbcType=VARCHAR}, + extension = #{extension,jdbcType=LONGVARCHAR} + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_operation_record + set operator = #{operator,jdbcType=VARCHAR}, + dictValue = #{dictvalue,jdbcType=VARCHAR}, + userId = #{userid,jdbcType=INTEGER}, + remark = #{remark,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + ip = #{ip,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussPayAreaRyxMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussPayAreaRyxMapper.xml new file mode 100644 index 0000000..0dc2e4a --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussPayAreaRyxMapper.xml @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + id, provinceCode, province, cityCode, city, areaCode, area + + + + delete from tb_pluss_pay_area_ryx + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_pay_area_ryx (id, provinceCode, province, + cityCode, city, areaCode, + area) + values (#{id,jdbcType=INTEGER}, #{provincecode,jdbcType=VARCHAR}, #{province,jdbcType=VARCHAR}, + #{citycode,jdbcType=VARCHAR}, #{city,jdbcType=VARCHAR}, #{areacode,jdbcType=VARCHAR}, + #{area,jdbcType=VARCHAR}) + + + insert into tb_pluss_pay_area_ryx + + + id, + + + provinceCode, + + + province, + + + cityCode, + + + city, + + + areaCode, + + + area, + + + + + #{id,jdbcType=INTEGER}, + + + #{provincecode,jdbcType=VARCHAR}, + + + #{province,jdbcType=VARCHAR}, + + + #{citycode,jdbcType=VARCHAR}, + + + #{city,jdbcType=VARCHAR}, + + + #{areacode,jdbcType=VARCHAR}, + + + #{area,jdbcType=VARCHAR}, + + + + + update tb_pluss_pay_area_ryx + + + provinceCode = #{provincecode,jdbcType=VARCHAR}, + + + province = #{province,jdbcType=VARCHAR}, + + + cityCode = #{citycode,jdbcType=VARCHAR}, + + + city = #{city,jdbcType=VARCHAR}, + + + areaCode = #{areacode,jdbcType=VARCHAR}, + + + area = #{area,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_pay_area_ryx + set provinceCode = #{provincecode,jdbcType=VARCHAR}, + province = #{province,jdbcType=VARCHAR}, + cityCode = #{citycode,jdbcType=VARCHAR}, + city = #{city,jdbcType=VARCHAR}, + areaCode = #{areacode,jdbcType=VARCHAR}, + area = #{area,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussPhoneConfigMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussPhoneConfigMapper.xml new file mode 100644 index 0000000..805205a --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussPhoneConfigMapper.xml @@ -0,0 +1,82 @@ + + + + + + + + + + + id, phone, name, createTime + + + + delete from tb_pluss_phone_config + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_phone_config (id, phone, name, + createTime) + values (#{id,jdbcType=INTEGER}, #{phone,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_phone_config + + + id, + + + phone, + + + name, + + + createTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{phone,jdbcType=VARCHAR}, + + + #{name,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_phone_config + + + phone = #{phone,jdbcType=VARCHAR}, + + + name = #{name,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_phone_config + set phone = #{phone,jdbcType=VARCHAR}, + name = #{name,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussPhoneValidateCodeMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussPhoneValidateCodeMapper.xml new file mode 100644 index 0000000..8f6ce45 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussPhoneValidateCodeMapper.xml @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + id, phone, code, sendDt, status, attempt, remark + + + + delete from tb_pluss_phone_validate_code + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_phone_validate_code (id, phone, code, + sendDt, status, attempt, + remark) + values (#{id,jdbcType=INTEGER}, #{phone,jdbcType=VARCHAR}, #{code,jdbcType=VARCHAR}, + #{senddt,jdbcType=TIMESTAMP}, #{status,jdbcType=VARCHAR}, #{attempt,jdbcType=BIT}, + #{remark,jdbcType=VARCHAR}) + + + insert into tb_pluss_phone_validate_code + + + id, + + + phone, + + + code, + + + sendDt, + + + status, + + + attempt, + + + remark, + + + + + #{id,jdbcType=INTEGER}, + + + #{phone,jdbcType=VARCHAR}, + + + #{code,jdbcType=VARCHAR}, + + + #{senddt,jdbcType=TIMESTAMP}, + + + #{status,jdbcType=VARCHAR}, + + + #{attempt,jdbcType=BIT}, + + + #{remark,jdbcType=VARCHAR}, + + + + + update tb_pluss_phone_validate_code + + + phone = #{phone,jdbcType=VARCHAR}, + + + code = #{code,jdbcType=VARCHAR}, + + + sendDt = #{senddt,jdbcType=TIMESTAMP}, + + + status = #{status,jdbcType=VARCHAR}, + + + attempt = #{attempt,jdbcType=BIT}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_phone_validate_code + set phone = #{phone,jdbcType=VARCHAR}, + code = #{code,jdbcType=VARCHAR}, + sendDt = #{senddt,jdbcType=TIMESTAMP}, + status = #{status,jdbcType=VARCHAR}, + attempt = #{attempt,jdbcType=BIT}, + remark = #{remark,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussPlatformDataMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussPlatformDataMapper.xml new file mode 100644 index 0000000..e51cab0 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussPlatformDataMapper.xml @@ -0,0 +1,305 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, transAmt, aliAmt, wxAmt, ysfAmt, transNum, aliNum, wxNum, ysfNum, refundAmt, + aliRefundAmt, wxRefundAmt, ysfRefundAmt, storeNum, memberNum, promoterNum, profitAmt, + shareAmt, fansAmt, actualAmt, operatDate, createTime, operateMonth + + + + delete from tb_pluss_platform_data + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_platform_data (id, transAmt, aliAmt, + wxAmt, ysfAmt, transNum, + aliNum, wxNum, ysfNum, + refundAmt, aliRefundAmt, wxRefundAmt, + ysfRefundAmt, storeNum, memberNum, + promoterNum, profitAmt, shareAmt, + fansAmt, actualAmt, operatDate, + createTime, operateMonth) + values (#{id,jdbcType=INTEGER}, #{transamt,jdbcType=DECIMAL}, #{aliamt,jdbcType=DECIMAL}, + #{wxamt,jdbcType=DECIMAL}, #{ysfamt,jdbcType=DECIMAL}, #{transnum,jdbcType=INTEGER}, + #{alinum,jdbcType=INTEGER}, #{wxnum,jdbcType=INTEGER}, #{ysfnum,jdbcType=INTEGER}, + #{refundamt,jdbcType=DECIMAL}, #{alirefundamt,jdbcType=DECIMAL}, #{wxrefundamt,jdbcType=DECIMAL}, + #{ysfrefundamt,jdbcType=DECIMAL}, #{storenum,jdbcType=INTEGER}, #{membernum,jdbcType=INTEGER}, + #{promoternum,jdbcType=INTEGER}, #{profitamt,jdbcType=DECIMAL}, #{shareamt,jdbcType=DECIMAL}, + #{fansamt,jdbcType=DECIMAL}, #{actualamt,jdbcType=DECIMAL}, #{operatdate,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{operatemonth,jdbcType=CHAR}) + + + insert into tb_pluss_platform_data + + + id, + + + transAmt, + + + aliAmt, + + + wxAmt, + + + ysfAmt, + + + transNum, + + + aliNum, + + + wxNum, + + + ysfNum, + + + refundAmt, + + + aliRefundAmt, + + + wxRefundAmt, + + + ysfRefundAmt, + + + storeNum, + + + memberNum, + + + promoterNum, + + + profitAmt, + + + shareAmt, + + + fansAmt, + + + actualAmt, + + + operatDate, + + + createTime, + + + operateMonth, + + + + + #{id,jdbcType=INTEGER}, + + + #{transamt,jdbcType=DECIMAL}, + + + #{aliamt,jdbcType=DECIMAL}, + + + #{wxamt,jdbcType=DECIMAL}, + + + #{ysfamt,jdbcType=DECIMAL}, + + + #{transnum,jdbcType=INTEGER}, + + + #{alinum,jdbcType=INTEGER}, + + + #{wxnum,jdbcType=INTEGER}, + + + #{ysfnum,jdbcType=INTEGER}, + + + #{refundamt,jdbcType=DECIMAL}, + + + #{alirefundamt,jdbcType=DECIMAL}, + + + #{wxrefundamt,jdbcType=DECIMAL}, + + + #{ysfrefundamt,jdbcType=DECIMAL}, + + + #{storenum,jdbcType=INTEGER}, + + + #{membernum,jdbcType=INTEGER}, + + + #{promoternum,jdbcType=INTEGER}, + + + #{profitamt,jdbcType=DECIMAL}, + + + #{shareamt,jdbcType=DECIMAL}, + + + #{fansamt,jdbcType=DECIMAL}, + + + #{actualamt,jdbcType=DECIMAL}, + + + #{operatdate,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{operatemonth,jdbcType=CHAR}, + + + + + update tb_pluss_platform_data + + + transAmt = #{transamt,jdbcType=DECIMAL}, + + + aliAmt = #{aliamt,jdbcType=DECIMAL}, + + + wxAmt = #{wxamt,jdbcType=DECIMAL}, + + + ysfAmt = #{ysfamt,jdbcType=DECIMAL}, + + + transNum = #{transnum,jdbcType=INTEGER}, + + + aliNum = #{alinum,jdbcType=INTEGER}, + + + wxNum = #{wxnum,jdbcType=INTEGER}, + + + ysfNum = #{ysfnum,jdbcType=INTEGER}, + + + refundAmt = #{refundamt,jdbcType=DECIMAL}, + + + aliRefundAmt = #{alirefundamt,jdbcType=DECIMAL}, + + + wxRefundAmt = #{wxrefundamt,jdbcType=DECIMAL}, + + + ysfRefundAmt = #{ysfrefundamt,jdbcType=DECIMAL}, + + + storeNum = #{storenum,jdbcType=INTEGER}, + + + memberNum = #{membernum,jdbcType=INTEGER}, + + + promoterNum = #{promoternum,jdbcType=INTEGER}, + + + profitAmt = #{profitamt,jdbcType=DECIMAL}, + + + shareAmt = #{shareamt,jdbcType=DECIMAL}, + + + fansAmt = #{fansamt,jdbcType=DECIMAL}, + + + actualAmt = #{actualamt,jdbcType=DECIMAL}, + + + operatDate = #{operatdate,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + operateMonth = #{operatemonth,jdbcType=CHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_platform_data + set transAmt = #{transamt,jdbcType=DECIMAL}, + aliAmt = #{aliamt,jdbcType=DECIMAL}, + wxAmt = #{wxamt,jdbcType=DECIMAL}, + ysfAmt = #{ysfamt,jdbcType=DECIMAL}, + transNum = #{transnum,jdbcType=INTEGER}, + aliNum = #{alinum,jdbcType=INTEGER}, + wxNum = #{wxnum,jdbcType=INTEGER}, + ysfNum = #{ysfnum,jdbcType=INTEGER}, + refundAmt = #{refundamt,jdbcType=DECIMAL}, + aliRefundAmt = #{alirefundamt,jdbcType=DECIMAL}, + wxRefundAmt = #{wxrefundamt,jdbcType=DECIMAL}, + ysfRefundAmt = #{ysfrefundamt,jdbcType=DECIMAL}, + storeNum = #{storenum,jdbcType=INTEGER}, + memberNum = #{membernum,jdbcType=INTEGER}, + promoterNum = #{promoternum,jdbcType=INTEGER}, + profitAmt = #{profitamt,jdbcType=DECIMAL}, + shareAmt = #{shareamt,jdbcType=DECIMAL}, + fansAmt = #{fansamt,jdbcType=DECIMAL}, + actualAmt = #{actualamt,jdbcType=DECIMAL}, + operatDate = #{operatdate,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + operateMonth = #{operatemonth,jdbcType=CHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussPostageConfigMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussPostageConfigMapper.xml new file mode 100644 index 0000000..a8311d8 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussPostageConfigMapper.xml @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + id, areaCode, areaName, areaLevel, firstWeight, nextWeight, remark, createTime, status + + + + delete from tb_pluss_postage_config + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_postage_config (id, areaCode, areaName, + areaLevel, firstWeight, nextWeight, + remark, createTime, status + ) + values (#{id,jdbcType=INTEGER}, #{areacode,jdbcType=VARCHAR}, #{areaname,jdbcType=VARCHAR}, + #{arealevel,jdbcType=VARCHAR}, #{firstweight,jdbcType=DECIMAL}, #{nextweight,jdbcType=DECIMAL}, + #{remark,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{status,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_postage_config + + + id, + + + areaCode, + + + areaName, + + + areaLevel, + + + firstWeight, + + + nextWeight, + + + remark, + + + createTime, + + + status, + + + + + #{id,jdbcType=INTEGER}, + + + #{areacode,jdbcType=VARCHAR}, + + + #{areaname,jdbcType=VARCHAR}, + + + #{arealevel,jdbcType=VARCHAR}, + + + #{firstweight,jdbcType=DECIMAL}, + + + #{nextweight,jdbcType=DECIMAL}, + + + #{remark,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{status,jdbcType=VARCHAR}, + + + + + update tb_pluss_postage_config + + + areaCode = #{areacode,jdbcType=VARCHAR}, + + + areaName = #{areaname,jdbcType=VARCHAR}, + + + areaLevel = #{arealevel,jdbcType=VARCHAR}, + + + firstWeight = #{firstweight,jdbcType=DECIMAL}, + + + nextWeight = #{nextweight,jdbcType=DECIMAL}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + status = #{status,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_postage_config + set areaCode = #{areacode,jdbcType=VARCHAR}, + areaName = #{areaname,jdbcType=VARCHAR}, + areaLevel = #{arealevel,jdbcType=VARCHAR}, + firstWeight = #{firstweight,jdbcType=DECIMAL}, + nextWeight = #{nextweight,jdbcType=DECIMAL}, + remark = #{remark,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + status = #{status,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussProvinceMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussProvinceMapper.xml new file mode 100644 index 0000000..f93a397 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussProvinceMapper.xml @@ -0,0 +1,82 @@ + + + + + + + + + + + F_province_no, F_province_name, F_aliasp, F_province_cups_no + + + + delete from tb_pluss_province + where F_province_no = #{fProvinceNo,jdbcType=INTEGER} + + + insert into tb_pluss_province (F_province_no, F_province_name, F_aliasp, + F_province_cups_no) + values (#{fProvinceNo,jdbcType=INTEGER}, #{fProvinceName,jdbcType=VARCHAR}, #{fAliasp,jdbcType=VARCHAR}, + #{fProvinceCupsNo,jdbcType=INTEGER}) + + + insert into tb_pluss_province + + + F_province_no, + + + F_province_name, + + + F_aliasp, + + + F_province_cups_no, + + + + + #{fProvinceNo,jdbcType=INTEGER}, + + + #{fProvinceName,jdbcType=VARCHAR}, + + + #{fAliasp,jdbcType=VARCHAR}, + + + #{fProvinceCupsNo,jdbcType=INTEGER}, + + + + + update tb_pluss_province + + + F_province_name = #{fProvinceName,jdbcType=VARCHAR}, + + + F_aliasp = #{fAliasp,jdbcType=VARCHAR}, + + + F_province_cups_no = #{fProvinceCupsNo,jdbcType=INTEGER}, + + + where F_province_no = #{fProvinceNo,jdbcType=INTEGER} + + + update tb_pluss_province + set F_province_name = #{fProvinceName,jdbcType=VARCHAR}, + F_aliasp = #{fAliasp,jdbcType=VARCHAR}, + F_province_cups_no = #{fProvinceCupsNo,jdbcType=INTEGER} + where F_province_no = #{fProvinceNo,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussPushAllMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussPushAllMapper.xml new file mode 100644 index 0000000..8ab9770 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussPushAllMapper.xml @@ -0,0 +1,93 @@ + + + + + + + + + + + + id, title, content, createTime, updateTime + + + + delete from tb_pluss_push_all + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_push_all (id, title, content, + createTime, updateTime) + values (#{id,jdbcType=INTEGER}, #{title,jdbcType=VARCHAR}, #{content,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_push_all + + + id, + + + title, + + + content, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{title,jdbcType=VARCHAR}, + + + #{content,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_push_all + + + title = #{title,jdbcType=VARCHAR}, + + + content = #{content,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_push_all + set title = #{title,jdbcType=VARCHAR}, + content = #{content,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussQrCodeMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussQrCodeMapper.xml new file mode 100644 index 0000000..f0209cc --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussQrCodeMapper.xml @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + id, qrNo, orderNo, buyMercName, buyMercId, actMercName, actMercId, status, createTime, + createBy, delFlag, remarks + + + + delete from tb_pluss_qr_code + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_qr_code (id, qrNo, orderNo, + buyMercName, buyMercId, actMercName, + actMercId, status, createTime, + createBy, delFlag, remarks + ) + values (#{id,jdbcType=INTEGER}, #{qrno,jdbcType=VARCHAR}, #{orderno,jdbcType=VARCHAR}, + #{buymercname,jdbcType=VARCHAR}, #{buymercid,jdbcType=VARCHAR}, #{actmercname,jdbcType=VARCHAR}, + #{actmercid,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, + #{createby,jdbcType=VARCHAR}, #{delflag,jdbcType=VARCHAR}, #{remarks,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_qr_code + + + id, + + + qrNo, + + + orderNo, + + + buyMercName, + + + buyMercId, + + + actMercName, + + + actMercId, + + + status, + + + createTime, + + + createBy, + + + delFlag, + + + remarks, + + + + + #{id,jdbcType=INTEGER}, + + + #{qrno,jdbcType=VARCHAR}, + + + #{orderno,jdbcType=VARCHAR}, + + + #{buymercname,jdbcType=VARCHAR}, + + + #{buymercid,jdbcType=VARCHAR}, + + + #{actmercname,jdbcType=VARCHAR}, + + + #{actmercid,jdbcType=VARCHAR}, + + + #{status,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{createby,jdbcType=VARCHAR}, + + + #{delflag,jdbcType=VARCHAR}, + + + #{remarks,jdbcType=VARCHAR}, + + + + + update tb_pluss_qr_code + + + qrNo = #{qrno,jdbcType=VARCHAR}, + + + orderNo = #{orderno,jdbcType=VARCHAR}, + + + buyMercName = #{buymercname,jdbcType=VARCHAR}, + + + buyMercId = #{buymercid,jdbcType=VARCHAR}, + + + actMercName = #{actmercname,jdbcType=VARCHAR}, + + + actMercId = #{actmercid,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + createBy = #{createby,jdbcType=VARCHAR}, + + + delFlag = #{delflag,jdbcType=VARCHAR}, + + + remarks = #{remarks,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_qr_code + set qrNo = #{qrno,jdbcType=VARCHAR}, + orderNo = #{orderno,jdbcType=VARCHAR}, + buyMercName = #{buymercname,jdbcType=VARCHAR}, + buyMercId = #{buymercid,jdbcType=VARCHAR}, + actMercName = #{actmercname,jdbcType=VARCHAR}, + actMercId = #{actmercid,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + createBy = #{createby,jdbcType=VARCHAR}, + delFlag = #{delflag,jdbcType=VARCHAR}, + remarks = #{remarks,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussQuestionsAnswersMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussQuestionsAnswersMapper.xml new file mode 100644 index 0000000..1fe7f51 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussQuestionsAnswersMapper.xml @@ -0,0 +1,106 @@ + + + + + + + + + + + + + id, question, answer, createDt, seq, status + + + + delete from tb_pluss_questions_answers + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_questions_answers (id, question, answer, + createDt, seq, status + ) + values (#{id,jdbcType=INTEGER}, #{question,jdbcType=VARCHAR}, #{answer,jdbcType=VARCHAR}, + #{createdt,jdbcType=TIMESTAMP}, #{seq,jdbcType=INTEGER}, #{status,jdbcType=INTEGER} + ) + + + insert into tb_pluss_questions_answers + + + id, + + + question, + + + answer, + + + createDt, + + + seq, + + + status, + + + + + #{id,jdbcType=INTEGER}, + + + #{question,jdbcType=VARCHAR}, + + + #{answer,jdbcType=VARCHAR}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{seq,jdbcType=INTEGER}, + + + #{status,jdbcType=INTEGER}, + + + + + update tb_pluss_questions_answers + + + question = #{question,jdbcType=VARCHAR}, + + + answer = #{answer,jdbcType=VARCHAR}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + seq = #{seq,jdbcType=INTEGER}, + + + status = #{status,jdbcType=INTEGER}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_questions_answers + set question = #{question,jdbcType=VARCHAR}, + answer = #{answer,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + seq = #{seq,jdbcType=INTEGER}, + status = #{status,jdbcType=INTEGER} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussQueueDataMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussQueueDataMapper.xml new file mode 100644 index 0000000..f649613 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussQueueDataMapper.xml @@ -0,0 +1,28 @@ + + + + + + + + delete from tb_pluss_queue_data + where id = #{id,jdbcType=VARCHAR} + + + insert into tb_pluss_queue_data (id) + values (#{id,jdbcType=VARCHAR}) + + + insert into tb_pluss_queue_data + + + id, + + + + + #{id,jdbcType=VARCHAR}, + + + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussRealFansMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussRealFansMapper.xml new file mode 100644 index 0000000..bbbf9ac --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussRealFansMapper.xml @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + id, nickName, logo, phone, soleId, aliConsum, wechatConsum, enableMerchantCode, enableTime + + + + delete from tb_pluss_real_fans + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_real_fans (id, nickName, logo, + phone, soleId, aliConsum, + wechatConsum, enableMerchantCode, enableTime + ) + values (#{id,jdbcType=INTEGER}, #{nickname,jdbcType=VARCHAR}, #{logo,jdbcType=VARCHAR}, + #{phone,jdbcType=VARCHAR}, #{soleid,jdbcType=VARCHAR}, #{aliconsum,jdbcType=VARCHAR}, + #{wechatconsum,jdbcType=VARCHAR}, #{enablemerchantcode,jdbcType=VARCHAR}, #{enabletime,jdbcType=TIMESTAMP} + ) + + + insert into tb_pluss_real_fans + + + id, + + + nickName, + + + logo, + + + phone, + + + soleId, + + + aliConsum, + + + wechatConsum, + + + enableMerchantCode, + + + enableTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{nickname,jdbcType=VARCHAR}, + + + #{logo,jdbcType=VARCHAR}, + + + #{phone,jdbcType=VARCHAR}, + + + #{soleid,jdbcType=VARCHAR}, + + + #{aliconsum,jdbcType=VARCHAR}, + + + #{wechatconsum,jdbcType=VARCHAR}, + + + #{enablemerchantcode,jdbcType=VARCHAR}, + + + #{enabletime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_real_fans + + + nickName = #{nickname,jdbcType=VARCHAR}, + + + logo = #{logo,jdbcType=VARCHAR}, + + + phone = #{phone,jdbcType=VARCHAR}, + + + soleId = #{soleid,jdbcType=VARCHAR}, + + + aliConsum = #{aliconsum,jdbcType=VARCHAR}, + + + wechatConsum = #{wechatconsum,jdbcType=VARCHAR}, + + + enableMerchantCode = #{enablemerchantcode,jdbcType=VARCHAR}, + + + enableTime = #{enabletime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_real_fans + set nickName = #{nickname,jdbcType=VARCHAR}, + logo = #{logo,jdbcType=VARCHAR}, + phone = #{phone,jdbcType=VARCHAR}, + soleId = #{soleid,jdbcType=VARCHAR}, + aliConsum = #{aliconsum,jdbcType=VARCHAR}, + wechatConsum = #{wechatconsum,jdbcType=VARCHAR}, + enableMerchantCode = #{enablemerchantcode,jdbcType=VARCHAR}, + enableTime = #{enabletime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussRegionCodeLsMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussRegionCodeLsMapper.xml new file mode 100644 index 0000000..38bec56 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussRegionCodeLsMapper.xml @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + id, province, provinceCode, city, cityCode, area, areaCode + + + + delete from tb_pluss_region_code_ls + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_region_code_ls (id, province, provinceCode, + city, cityCode, area, + areaCode) + values (#{id,jdbcType=INTEGER}, #{province,jdbcType=VARCHAR}, #{provincecode,jdbcType=VARCHAR}, + #{city,jdbcType=VARCHAR}, #{citycode,jdbcType=VARCHAR}, #{area,jdbcType=VARCHAR}, + #{areacode,jdbcType=VARCHAR}) + + + insert into tb_pluss_region_code_ls + + + id, + + + province, + + + provinceCode, + + + city, + + + cityCode, + + + area, + + + areaCode, + + + + + #{id,jdbcType=INTEGER}, + + + #{province,jdbcType=VARCHAR}, + + + #{provincecode,jdbcType=VARCHAR}, + + + #{city,jdbcType=VARCHAR}, + + + #{citycode,jdbcType=VARCHAR}, + + + #{area,jdbcType=VARCHAR}, + + + #{areacode,jdbcType=VARCHAR}, + + + + + update tb_pluss_region_code_ls + + + province = #{province,jdbcType=VARCHAR}, + + + provinceCode = #{provincecode,jdbcType=VARCHAR}, + + + city = #{city,jdbcType=VARCHAR}, + + + cityCode = #{citycode,jdbcType=VARCHAR}, + + + area = #{area,jdbcType=VARCHAR}, + + + areaCode = #{areacode,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_region_code_ls + set province = #{province,jdbcType=VARCHAR}, + provinceCode = #{provincecode,jdbcType=VARCHAR}, + city = #{city,jdbcType=VARCHAR}, + cityCode = #{citycode,jdbcType=VARCHAR}, + area = #{area,jdbcType=VARCHAR}, + areaCode = #{areacode,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussRegionCodeRyxMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussRegionCodeRyxMapper.xml new file mode 100644 index 0000000..03b6ff5 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussRegionCodeRyxMapper.xml @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + id, province, provinceCode, city, cityCode, area, areaCode, createTime + + + + delete from tb_pluss_region_code_ryx + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_region_code_ryx (id, province, provinceCode, + city, cityCode, area, + areaCode, createTime) + values (#{id,jdbcType=INTEGER}, #{province,jdbcType=VARCHAR}, #{provincecode,jdbcType=VARCHAR}, + #{city,jdbcType=VARCHAR}, #{citycode,jdbcType=VARCHAR}, #{area,jdbcType=VARCHAR}, + #{areacode,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_region_code_ryx + + + id, + + + province, + + + provinceCode, + + + city, + + + cityCode, + + + area, + + + areaCode, + + + createTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{province,jdbcType=VARCHAR}, + + + #{provincecode,jdbcType=VARCHAR}, + + + #{city,jdbcType=VARCHAR}, + + + #{citycode,jdbcType=VARCHAR}, + + + #{area,jdbcType=VARCHAR}, + + + #{areacode,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_region_code_ryx + + + province = #{province,jdbcType=VARCHAR}, + + + provinceCode = #{provincecode,jdbcType=VARCHAR}, + + + city = #{city,jdbcType=VARCHAR}, + + + cityCode = #{citycode,jdbcType=VARCHAR}, + + + area = #{area,jdbcType=VARCHAR}, + + + areaCode = #{areacode,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_region_code_ryx + set province = #{province,jdbcType=VARCHAR}, + provinceCode = #{provincecode,jdbcType=VARCHAR}, + city = #{city,jdbcType=VARCHAR}, + cityCode = #{citycode,jdbcType=VARCHAR}, + area = #{area,jdbcType=VARCHAR}, + areaCode = #{areacode,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussRegionCodeSxfMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussRegionCodeSxfMapper.xml new file mode 100644 index 0000000..e6b218b --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussRegionCodeSxfMapper.xml @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + id, province, provinceCode, city, cityCode, area, areaCode + + + + delete from tb_pluss_region_code_sxf + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_region_code_sxf (id, province, provinceCode, + city, cityCode, area, + areaCode) + values (#{id,jdbcType=INTEGER}, #{province,jdbcType=VARCHAR}, #{provincecode,jdbcType=VARCHAR}, + #{city,jdbcType=VARCHAR}, #{citycode,jdbcType=VARCHAR}, #{area,jdbcType=VARCHAR}, + #{areacode,jdbcType=VARCHAR}) + + + insert into tb_pluss_region_code_sxf + + + id, + + + province, + + + provinceCode, + + + city, + + + cityCode, + + + area, + + + areaCode, + + + + + #{id,jdbcType=INTEGER}, + + + #{province,jdbcType=VARCHAR}, + + + #{provincecode,jdbcType=VARCHAR}, + + + #{city,jdbcType=VARCHAR}, + + + #{citycode,jdbcType=VARCHAR}, + + + #{area,jdbcType=VARCHAR}, + + + #{areacode,jdbcType=VARCHAR}, + + + + + update tb_pluss_region_code_sxf + + + province = #{province,jdbcType=VARCHAR}, + + + provinceCode = #{provincecode,jdbcType=VARCHAR}, + + + city = #{city,jdbcType=VARCHAR}, + + + cityCode = #{citycode,jdbcType=VARCHAR}, + + + area = #{area,jdbcType=VARCHAR}, + + + areaCode = #{areacode,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_region_code_sxf + set province = #{province,jdbcType=VARCHAR}, + provinceCode = #{provincecode,jdbcType=VARCHAR}, + city = #{city,jdbcType=VARCHAR}, + cityCode = #{citycode,jdbcType=VARCHAR}, + area = #{area,jdbcType=VARCHAR}, + areaCode = #{areacode,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussRegionCodeYsMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussRegionCodeYsMapper.xml new file mode 100644 index 0000000..13eaeaf --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussRegionCodeYsMapper.xml @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + id, province, provinceCode, city, cityCode, area, areaCode + + + + delete from tb_pluss_region_code_ys + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_region_code_ys (id, province, provinceCode, + city, cityCode, area, + areaCode) + values (#{id,jdbcType=INTEGER}, #{province,jdbcType=VARCHAR}, #{provincecode,jdbcType=VARCHAR}, + #{city,jdbcType=VARCHAR}, #{citycode,jdbcType=VARCHAR}, #{area,jdbcType=VARCHAR}, + #{areacode,jdbcType=VARCHAR}) + + + insert into tb_pluss_region_code_ys + + + id, + + + province, + + + provinceCode, + + + city, + + + cityCode, + + + area, + + + areaCode, + + + + + #{id,jdbcType=INTEGER}, + + + #{province,jdbcType=VARCHAR}, + + + #{provincecode,jdbcType=VARCHAR}, + + + #{city,jdbcType=VARCHAR}, + + + #{citycode,jdbcType=VARCHAR}, + + + #{area,jdbcType=VARCHAR}, + + + #{areacode,jdbcType=VARCHAR}, + + + + + update tb_pluss_region_code_ys + + + province = #{province,jdbcType=VARCHAR}, + + + provinceCode = #{provincecode,jdbcType=VARCHAR}, + + + city = #{city,jdbcType=VARCHAR}, + + + cityCode = #{citycode,jdbcType=VARCHAR}, + + + area = #{area,jdbcType=VARCHAR}, + + + areaCode = #{areacode,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_region_code_ys + set province = #{province,jdbcType=VARCHAR}, + provinceCode = #{provincecode,jdbcType=VARCHAR}, + city = #{city,jdbcType=VARCHAR}, + cityCode = #{citycode,jdbcType=VARCHAR}, + area = #{area,jdbcType=VARCHAR}, + areaCode = #{areacode,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussRegionLklMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussRegionLklMapper.xml new file mode 100644 index 0000000..b09b1d3 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussRegionLklMapper.xml @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + insert into tb_pluss_region_lkl (create_time, optimistic, update_time, + code, name, parent_code, + id) + values (#{createTime,jdbcType=VARCHAR}, #{optimistic,jdbcType=VARCHAR}, #{updateTime,jdbcType=VARCHAR}, + #{code,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, #{parentCode,jdbcType=VARCHAR}, + #{id,jdbcType=VARCHAR}) + + + insert into tb_pluss_region_lkl + + + create_time, + + + optimistic, + + + update_time, + + + code, + + + name, + + + parent_code, + + + id, + + + + + #{createTime,jdbcType=VARCHAR}, + + + #{optimistic,jdbcType=VARCHAR}, + + + #{updateTime,jdbcType=VARCHAR}, + + + #{code,jdbcType=VARCHAR}, + + + #{name,jdbcType=VARCHAR}, + + + #{parentCode,jdbcType=VARCHAR}, + + + #{id,jdbcType=VARCHAR}, + + + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussRegionReflectMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussRegionReflectMapper.xml new file mode 100644 index 0000000..69f952b --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussRegionReflectMapper.xml @@ -0,0 +1,82 @@ + + + + + + + + + + + id, channel, regionSrc, regionDes + + + + delete from tb_pluss_region_reflect + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_region_reflect (id, channel, regionSrc, + regionDes) + values (#{id,jdbcType=INTEGER}, #{channel,jdbcType=INTEGER}, #{regionsrc,jdbcType=INTEGER}, + #{regiondes,jdbcType=INTEGER}) + + + insert into tb_pluss_region_reflect + + + id, + + + channel, + + + regionSrc, + + + regionDes, + + + + + #{id,jdbcType=INTEGER}, + + + #{channel,jdbcType=INTEGER}, + + + #{regionsrc,jdbcType=INTEGER}, + + + #{regiondes,jdbcType=INTEGER}, + + + + + update tb_pluss_region_reflect + + + channel = #{channel,jdbcType=INTEGER}, + + + regionSrc = #{regionsrc,jdbcType=INTEGER}, + + + regionDes = #{regiondes,jdbcType=INTEGER}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_region_reflect + set channel = #{channel,jdbcType=INTEGER}, + regionSrc = #{regionsrc,jdbcType=INTEGER}, + regionDes = #{regiondes,jdbcType=INTEGER} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussReqRecordsMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussReqRecordsMapper.xml new file mode 100644 index 0000000..1b53673 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussReqRecordsMapper.xml @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + id, uri, userId, loginName, phone, ip, createTime + + + + delete from tb_pluss_req_records + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_req_records (id, uri, userId, + loginName, phone, ip, + createTime) + values (#{id,jdbcType=INTEGER}, #{uri,jdbcType=VARCHAR}, #{userid,jdbcType=INTEGER}, + #{loginname,jdbcType=VARCHAR}, #{phone,jdbcType=VARCHAR}, #{ip,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_req_records + + + id, + + + uri, + + + userId, + + + loginName, + + + phone, + + + ip, + + + createTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{uri,jdbcType=VARCHAR}, + + + #{userid,jdbcType=INTEGER}, + + + #{loginname,jdbcType=VARCHAR}, + + + #{phone,jdbcType=VARCHAR}, + + + #{ip,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_req_records + + + uri = #{uri,jdbcType=VARCHAR}, + + + userId = #{userid,jdbcType=INTEGER}, + + + loginName = #{loginname,jdbcType=VARCHAR}, + + + phone = #{phone,jdbcType=VARCHAR}, + + + ip = #{ip,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_req_records + set uri = #{uri,jdbcType=VARCHAR}, + userId = #{userid,jdbcType=INTEGER}, + loginName = #{loginname,jdbcType=VARCHAR}, + phone = #{phone,jdbcType=VARCHAR}, + ip = #{ip,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussRewardConfigMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussRewardConfigMapper.xml new file mode 100644 index 0000000..72dda42 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussRewardConfigMapper.xml @@ -0,0 +1,106 @@ + + + + + + + + + + + + + id, name, roleCode, type, scale, createTime + + + + delete from tb_pluss_reward_config + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_reward_config (id, name, roleCode, + type, scale, createTime + ) + values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{rolecode,jdbcType=VARCHAR}, + #{type,jdbcType=VARCHAR}, #{scale,jdbcType=DECIMAL}, #{createtime,jdbcType=TIMESTAMP} + ) + + + insert into tb_pluss_reward_config + + + id, + + + name, + + + roleCode, + + + type, + + + scale, + + + createTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{name,jdbcType=VARCHAR}, + + + #{rolecode,jdbcType=VARCHAR}, + + + #{type,jdbcType=VARCHAR}, + + + #{scale,jdbcType=DECIMAL}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_reward_config + + + name = #{name,jdbcType=VARCHAR}, + + + roleCode = #{rolecode,jdbcType=VARCHAR}, + + + type = #{type,jdbcType=VARCHAR}, + + + scale = #{scale,jdbcType=DECIMAL}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_reward_config + set name = #{name,jdbcType=VARCHAR}, + roleCode = #{rolecode,jdbcType=VARCHAR}, + type = #{type,jdbcType=VARCHAR}, + scale = #{scale,jdbcType=DECIMAL}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussRiskBlacklistMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussRiskBlacklistMapper.xml new file mode 100644 index 0000000..9777cff --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussRiskBlacklistMapper.xml @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + id, idcardNo, certName, userId, causeUserId, remark, channel, payWay, status, createTime, + updateTime + + + + delete from tb_pluss_risk_blacklist + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_risk_blacklist (id, idcardNo, certName, + userId, causeUserId, remark, + channel, payWay, status, + createTime, updateTime) + values (#{id,jdbcType=INTEGER}, #{idcardno,jdbcType=VARCHAR}, #{certname,jdbcType=VARCHAR}, + #{userid,jdbcType=INTEGER}, #{causeuserid,jdbcType=INTEGER}, #{remark,jdbcType=VARCHAR}, + #{channel,jdbcType=INTEGER}, #{payway,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_risk_blacklist + + + id, + + + idcardNo, + + + certName, + + + userId, + + + causeUserId, + + + remark, + + + channel, + + + payWay, + + + status, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{idcardno,jdbcType=VARCHAR}, + + + #{certname,jdbcType=VARCHAR}, + + + #{userid,jdbcType=INTEGER}, + + + #{causeuserid,jdbcType=INTEGER}, + + + #{remark,jdbcType=VARCHAR}, + + + #{channel,jdbcType=INTEGER}, + + + #{payway,jdbcType=VARCHAR}, + + + #{status,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_risk_blacklist + + + idcardNo = #{idcardno,jdbcType=VARCHAR}, + + + certName = #{certname,jdbcType=VARCHAR}, + + + userId = #{userid,jdbcType=INTEGER}, + + + causeUserId = #{causeuserid,jdbcType=INTEGER}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + channel = #{channel,jdbcType=INTEGER}, + + + payWay = #{payway,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_risk_blacklist + set idcardNo = #{idcardno,jdbcType=VARCHAR}, + certName = #{certname,jdbcType=VARCHAR}, + userId = #{userid,jdbcType=INTEGER}, + causeUserId = #{causeuserid,jdbcType=INTEGER}, + remark = #{remark,jdbcType=VARCHAR}, + channel = #{channel,jdbcType=INTEGER}, + payWay = #{payway,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussRoleInfoMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussRoleInfoMapper.xml new file mode 100644 index 0000000..7716869 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussRoleInfoMapper.xml @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + id, name, creator, createTime, updator, updateTime, version + + + + delete from tb_pluss_role_info + where id = #{id,jdbcType=BIGINT} + + + insert into tb_pluss_role_info (id, name, creator, + createTime, updator, updateTime, + version) + values (#{id,jdbcType=BIGINT}, #{name,jdbcType=VARCHAR}, #{creator,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{updator,jdbcType=VARCHAR}, #{updatetime,jdbcType=TIMESTAMP}, + #{version,jdbcType=VARCHAR}) + + + insert into tb_pluss_role_info + + + id, + + + name, + + + creator, + + + createTime, + + + updator, + + + updateTime, + + + version, + + + + + #{id,jdbcType=BIGINT}, + + + #{name,jdbcType=VARCHAR}, + + + #{creator,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updator,jdbcType=VARCHAR}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{version,jdbcType=VARCHAR}, + + + + + update tb_pluss_role_info + + + name = #{name,jdbcType=VARCHAR}, + + + creator = #{creator,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updator = #{updator,jdbcType=VARCHAR}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + version = #{version,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=BIGINT} + + + update tb_pluss_role_info + set name = #{name,jdbcType=VARCHAR}, + creator = #{creator,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updator = #{updator,jdbcType=VARCHAR}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + version = #{version,jdbcType=VARCHAR} + where id = #{id,jdbcType=BIGINT} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussRoleMenuInfoCopy1Mapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussRoleMenuInfoCopy1Mapper.xml new file mode 100644 index 0000000..6d63063 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussRoleMenuInfoCopy1Mapper.xml @@ -0,0 +1,71 @@ + + + + + + + + + + id, roleId, menuId + + + + delete from tb_pluss_role_menu_info_copy1 + where id = #{id,jdbcType=BIGINT} + + + insert into tb_pluss_role_menu_info_copy1 (id, roleId, menuId + ) + values (#{id,jdbcType=BIGINT}, #{roleid,jdbcType=BIGINT}, #{menuid,jdbcType=BIGINT} + ) + + + insert into tb_pluss_role_menu_info_copy1 + + + id, + + + roleId, + + + menuId, + + + + + #{id,jdbcType=BIGINT}, + + + #{roleid,jdbcType=BIGINT}, + + + #{menuid,jdbcType=BIGINT}, + + + + + update tb_pluss_role_menu_info_copy1 + + + roleId = #{roleid,jdbcType=BIGINT}, + + + menuId = #{menuid,jdbcType=BIGINT}, + + + where id = #{id,jdbcType=BIGINT} + + + update tb_pluss_role_menu_info_copy1 + set roleId = #{roleid,jdbcType=BIGINT}, + menuId = #{menuid,jdbcType=BIGINT} + where id = #{id,jdbcType=BIGINT} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussRoleMenuInfoMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussRoleMenuInfoMapper.xml new file mode 100644 index 0000000..f6e6697 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussRoleMenuInfoMapper.xml @@ -0,0 +1,71 @@ + + + + + + + + + + id, roleId, menuId + + + + delete from tb_pluss_role_menu_info + where id = #{id,jdbcType=BIGINT} + + + insert into tb_pluss_role_menu_info (id, roleId, menuId + ) + values (#{id,jdbcType=BIGINT}, #{roleid,jdbcType=BIGINT}, #{menuid,jdbcType=BIGINT} + ) + + + insert into tb_pluss_role_menu_info + + + id, + + + roleId, + + + menuId, + + + + + #{id,jdbcType=BIGINT}, + + + #{roleid,jdbcType=BIGINT}, + + + #{menuid,jdbcType=BIGINT}, + + + + + update tb_pluss_role_menu_info + + + roleId = #{roleid,jdbcType=BIGINT}, + + + menuId = #{menuid,jdbcType=BIGINT}, + + + where id = #{id,jdbcType=BIGINT} + + + update tb_pluss_role_menu_info + set roleId = #{roleid,jdbcType=BIGINT}, + menuId = #{menuid,jdbcType=BIGINT} + where id = #{id,jdbcType=BIGINT} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussRoleUserInfoMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussRoleUserInfoMapper.xml new file mode 100644 index 0000000..5617b30 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussRoleUserInfoMapper.xml @@ -0,0 +1,82 @@ + + + + + + + + + + + id, roleId, userId, version + + + + delete from tb_pluss_role_user_info + where id = #{id,jdbcType=BIGINT} + + + insert into tb_pluss_role_user_info (id, roleId, userId, + version) + values (#{id,jdbcType=BIGINT}, #{roleid,jdbcType=BIGINT}, #{userid,jdbcType=BIGINT}, + #{version,jdbcType=VARCHAR}) + + + insert into tb_pluss_role_user_info + + + id, + + + roleId, + + + userId, + + + version, + + + + + #{id,jdbcType=BIGINT}, + + + #{roleid,jdbcType=BIGINT}, + + + #{userid,jdbcType=BIGINT}, + + + #{version,jdbcType=VARCHAR}, + + + + + update tb_pluss_role_user_info + + + roleId = #{roleid,jdbcType=BIGINT}, + + + userId = #{userid,jdbcType=BIGINT}, + + + version = #{version,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=BIGINT} + + + update tb_pluss_role_user_info + set roleId = #{roleid,jdbcType=BIGINT}, + userId = #{userid,jdbcType=BIGINT}, + version = #{version,jdbcType=VARCHAR} + where id = #{id,jdbcType=BIGINT} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussStaffPermissionMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussStaffPermissionMapper.xml new file mode 100644 index 0000000..367736c --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussStaffPermissionMapper.xml @@ -0,0 +1,106 @@ + + + + + + + + + + + + + id, userId, merchantCode, permissionBill, createTime, updateTime + + + + delete from tb_pluss_staff_permission + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_staff_permission (id, userId, merchantCode, + permissionBill, createTime, updateTime + ) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, + #{permissionbill,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP} + ) + + + insert into tb_pluss_staff_permission + + + id, + + + userId, + + + merchantCode, + + + permissionBill, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{permissionbill,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_staff_permission + + + userId = #{userid,jdbcType=INTEGER}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + permissionBill = #{permissionbill,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_staff_permission + set userId = #{userid,jdbcType=INTEGER}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + permissionBill = #{permissionbill,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussSubMercCodeYsMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussSubMercCodeYsMapper.xml new file mode 100644 index 0000000..cc40008 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussSubMercCodeYsMapper.xml @@ -0,0 +1,106 @@ + + + + + + + + + + + + + id, code, name, pCode, leveName, remark + + + + delete from tb_pluss_sub_merc_code_ys + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_sub_merc_code_ys (id, code, name, + pCode, leveName, remark + ) + values (#{id,jdbcType=INTEGER}, #{code,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, + #{pcode,jdbcType=VARCHAR}, #{levename,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_sub_merc_code_ys + + + id, + + + code, + + + name, + + + pCode, + + + leveName, + + + remark, + + + + + #{id,jdbcType=INTEGER}, + + + #{code,jdbcType=VARCHAR}, + + + #{name,jdbcType=VARCHAR}, + + + #{pcode,jdbcType=VARCHAR}, + + + #{levename,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + + + update tb_pluss_sub_merc_code_ys + + + code = #{code,jdbcType=VARCHAR}, + + + name = #{name,jdbcType=VARCHAR}, + + + pCode = #{pcode,jdbcType=VARCHAR}, + + + leveName = #{levename,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_sub_merc_code_ys + set code = #{code,jdbcType=VARCHAR}, + name = #{name,jdbcType=VARCHAR}, + pCode = #{pcode,jdbcType=VARCHAR}, + leveName = #{levename,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussSubMerchantApplyOrderMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussSubMerchantApplyOrderMapper.xml new file mode 100644 index 0000000..3d12df1 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussSubMerchantApplyOrderMapper.xml @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + id, merchantCode, channelId, subMchType, applyNo, status, infoQrcode, resultStatus, + remark, createTime, updateTime + + + + delete from tb_pluss_sub_merchant_apply_order + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_sub_merchant_apply_order (id, merchantCode, channelId, + subMchType, applyNo, status, + infoQrcode, resultStatus, remark, + createTime, updateTime) + values (#{id,jdbcType=INTEGER}, #{merchantcode,jdbcType=VARCHAR}, #{channelid,jdbcType=INTEGER}, + #{submchtype,jdbcType=VARCHAR}, #{applyno,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, + #{infoqrcode,jdbcType=VARCHAR}, #{resultstatus,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_sub_merchant_apply_order + + + id, + + + merchantCode, + + + channelId, + + + subMchType, + + + applyNo, + + + status, + + + infoQrcode, + + + resultStatus, + + + remark, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{channelid,jdbcType=INTEGER}, + + + #{submchtype,jdbcType=VARCHAR}, + + + #{applyno,jdbcType=VARCHAR}, + + + #{status,jdbcType=VARCHAR}, + + + #{infoqrcode,jdbcType=VARCHAR}, + + + #{resultstatus,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_sub_merchant_apply_order + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + channelId = #{channelid,jdbcType=INTEGER}, + + + subMchType = #{submchtype,jdbcType=VARCHAR}, + + + applyNo = #{applyno,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=VARCHAR}, + + + infoQrcode = #{infoqrcode,jdbcType=VARCHAR}, + + + resultStatus = #{resultstatus,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_sub_merchant_apply_order + set merchantCode = #{merchantcode,jdbcType=VARCHAR}, + channelId = #{channelid,jdbcType=INTEGER}, + subMchType = #{submchtype,jdbcType=VARCHAR}, + applyNo = #{applyno,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + infoQrcode = #{infoqrcode,jdbcType=VARCHAR}, + resultStatus = #{resultstatus,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussSubMerchantMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussSubMerchantMapper.xml new file mode 100644 index 0000000..5667d83 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussSubMerchantMapper.xml @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + id, merchantId, channelId, subMchId, subMchType, remark, channelTypeId, status, createTime, + updateTime + + + + delete from tb_pluss_sub_merchant + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_sub_merchant (id, merchantId, channelId, + subMchId, subMchType, remark, + channelTypeId, status, createTime, + updateTime) + values (#{id,jdbcType=INTEGER}, #{merchantid,jdbcType=VARCHAR}, #{channelid,jdbcType=VARCHAR}, + #{submchid,jdbcType=VARCHAR}, #{submchtype,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR}, + #{channeltypeid,jdbcType=INTEGER}, #{status,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, + #{updatetime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_sub_merchant + + + id, + + + merchantId, + + + channelId, + + + subMchId, + + + subMchType, + + + remark, + + + channelTypeId, + + + status, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{merchantid,jdbcType=VARCHAR}, + + + #{channelid,jdbcType=VARCHAR}, + + + #{submchid,jdbcType=VARCHAR}, + + + #{submchtype,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{channeltypeid,jdbcType=INTEGER}, + + + #{status,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_sub_merchant + + + merchantId = #{merchantid,jdbcType=VARCHAR}, + + + channelId = #{channelid,jdbcType=VARCHAR}, + + + subMchId = #{submchid,jdbcType=VARCHAR}, + + + subMchType = #{submchtype,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + channelTypeId = #{channeltypeid,jdbcType=INTEGER}, + + + status = #{status,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_sub_merchant + set merchantId = #{merchantid,jdbcType=VARCHAR}, + channelId = #{channelid,jdbcType=VARCHAR}, + subMchId = #{submchid,jdbcType=VARCHAR}, + subMchType = #{submchtype,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + channelTypeId = #{channeltypeid,jdbcType=INTEGER}, + status = #{status,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussSuggestMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussSuggestMapper.xml new file mode 100644 index 0000000..0301945 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussSuggestMapper.xml @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + id, userId, logo, createDt, content, status, picUrls, phone + + + + delete from tb_pluss_suggest + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_suggest (id, userId, logo, + createDt, content, status, + picUrls, phone) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{logo,jdbcType=VARCHAR}, + #{createdt,jdbcType=TIMESTAMP}, #{content,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, + #{picurls,jdbcType=VARCHAR}, #{phone,jdbcType=VARCHAR}) + + + insert into tb_pluss_suggest + + + id, + + + userId, + + + logo, + + + createDt, + + + content, + + + status, + + + picUrls, + + + phone, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{logo,jdbcType=VARCHAR}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{content,jdbcType=VARCHAR}, + + + #{status,jdbcType=VARCHAR}, + + + #{picurls,jdbcType=VARCHAR}, + + + #{phone,jdbcType=VARCHAR}, + + + + + update tb_pluss_suggest + + + userId = #{userid,jdbcType=INTEGER}, + + + logo = #{logo,jdbcType=VARCHAR}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + content = #{content,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=VARCHAR}, + + + picUrls = #{picurls,jdbcType=VARCHAR}, + + + phone = #{phone,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_suggest + set userId = #{userid,jdbcType=INTEGER}, + logo = #{logo,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + content = #{content,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + picUrls = #{picurls,jdbcType=VARCHAR}, + phone = #{phone,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussSxfMccInfoMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussSxfMccInfoMapper.xml new file mode 100644 index 0000000..63d28aa --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussSxfMccInfoMapper.xml @@ -0,0 +1,106 @@ + + + + + + + + + + + + + F_ID, F_mcc_code, F_grandpa_txt, F_father_txt, F_mcc_txt, F_mcc_type + + + + delete from tb_pluss_sxf_mcc_info + where F_ID = #{fId,jdbcType=INTEGER} + + + insert into tb_pluss_sxf_mcc_info (F_ID, F_mcc_code, F_grandpa_txt, + F_father_txt, F_mcc_txt, F_mcc_type + ) + values (#{fId,jdbcType=INTEGER}, #{fMccCode,jdbcType=VARCHAR}, #{fGrandpaTxt,jdbcType=VARCHAR}, + #{fFatherTxt,jdbcType=VARCHAR}, #{fMccTxt,jdbcType=VARCHAR}, #{fMccType,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_sxf_mcc_info + + + F_ID, + + + F_mcc_code, + + + F_grandpa_txt, + + + F_father_txt, + + + F_mcc_txt, + + + F_mcc_type, + + + + + #{fId,jdbcType=INTEGER}, + + + #{fMccCode,jdbcType=VARCHAR}, + + + #{fGrandpaTxt,jdbcType=VARCHAR}, + + + #{fFatherTxt,jdbcType=VARCHAR}, + + + #{fMccTxt,jdbcType=VARCHAR}, + + + #{fMccType,jdbcType=VARCHAR}, + + + + + update tb_pluss_sxf_mcc_info + + + F_mcc_code = #{fMccCode,jdbcType=VARCHAR}, + + + F_grandpa_txt = #{fGrandpaTxt,jdbcType=VARCHAR}, + + + F_father_txt = #{fFatherTxt,jdbcType=VARCHAR}, + + + F_mcc_txt = #{fMccTxt,jdbcType=VARCHAR}, + + + F_mcc_type = #{fMccType,jdbcType=VARCHAR}, + + + where F_ID = #{fId,jdbcType=INTEGER} + + + update tb_pluss_sxf_mcc_info + set F_mcc_code = #{fMccCode,jdbcType=VARCHAR}, + F_grandpa_txt = #{fGrandpaTxt,jdbcType=VARCHAR}, + F_father_txt = #{fFatherTxt,jdbcType=VARCHAR}, + F_mcc_txt = #{fMccTxt,jdbcType=VARCHAR}, + F_mcc_type = #{fMccType,jdbcType=VARCHAR} + where F_ID = #{fId,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussSysSqlMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussSysSqlMapper.xml new file mode 100644 index 0000000..d78c9c9 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussSysSqlMapper.xml @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + id, type, mapperName, createTime + + + sql + + + + delete from tb_pluss_sys_sql + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_sys_sql (id, type, mapperName, + createTime, sql) + values (#{id,jdbcType=INTEGER}, #{type,jdbcType=VARCHAR}, #{mappername,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{sql,jdbcType=LONGVARCHAR}) + + + insert into tb_pluss_sys_sql + + + id, + + + type, + + + mapperName, + + + createTime, + + + sql, + + + + + #{id,jdbcType=INTEGER}, + + + #{type,jdbcType=VARCHAR}, + + + #{mappername,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{sql,jdbcType=LONGVARCHAR}, + + + + + update tb_pluss_sys_sql + + + type = #{type,jdbcType=VARCHAR}, + + + mapperName = #{mappername,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + sql = #{sql,jdbcType=LONGVARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_sys_sql + set type = #{type,jdbcType=VARCHAR}, + mapperName = #{mappername,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + sql = #{sql,jdbcType=LONGVARCHAR} + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_sys_sql + set type = #{type,jdbcType=VARCHAR}, + mapperName = #{mappername,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussSystemInfoMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussSystemInfoMapper.xml new file mode 100644 index 0000000..46c763e --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussSystemInfoMapper.xml @@ -0,0 +1,106 @@ + + + + + + + + + + + + + id, title, content, remark, seq, createDt + + + + delete from tb_pluss_system_info + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_system_info (id, title, content, + remark, seq, createDt + ) + values (#{id,jdbcType=INTEGER}, #{title,jdbcType=VARCHAR}, #{content,jdbcType=VARCHAR}, + #{remark,jdbcType=VARCHAR}, #{seq,jdbcType=VARCHAR}, #{createdt,jdbcType=TIMESTAMP} + ) + + + insert into tb_pluss_system_info + + + id, + + + title, + + + content, + + + remark, + + + seq, + + + createDt, + + + + + #{id,jdbcType=INTEGER}, + + + #{title,jdbcType=VARCHAR}, + + + #{content,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{seq,jdbcType=VARCHAR}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_system_info + + + title = #{title,jdbcType=VARCHAR}, + + + content = #{content,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + seq = #{seq,jdbcType=VARCHAR}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_system_info + set title = #{title,jdbcType=VARCHAR}, + content = #{content,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + seq = #{seq,jdbcType=VARCHAR}, + createDt = #{createdt,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussSystemconfigMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussSystemconfigMapper.xml new file mode 100644 index 0000000..49d42d0 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussSystemconfigMapper.xml @@ -0,0 +1,106 @@ + + + + + + + + + + + + + id, propertyKey, propertyValue, propertyDesc, propertyIndex, systemId + + + + delete from tb_pluss_systemconfig + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_systemconfig (id, propertyKey, propertyValue, + propertyDesc, propertyIndex, systemId + ) + values (#{id,jdbcType=INTEGER}, #{propertykey,jdbcType=VARCHAR}, #{propertyvalue,jdbcType=VARCHAR}, + #{propertydesc,jdbcType=VARCHAR}, #{propertyindex,jdbcType=VARCHAR}, #{systemid,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_systemconfig + + + id, + + + propertyKey, + + + propertyValue, + + + propertyDesc, + + + propertyIndex, + + + systemId, + + + + + #{id,jdbcType=INTEGER}, + + + #{propertykey,jdbcType=VARCHAR}, + + + #{propertyvalue,jdbcType=VARCHAR}, + + + #{propertydesc,jdbcType=VARCHAR}, + + + #{propertyindex,jdbcType=VARCHAR}, + + + #{systemid,jdbcType=VARCHAR}, + + + + + update tb_pluss_systemconfig + + + propertyKey = #{propertykey,jdbcType=VARCHAR}, + + + propertyValue = #{propertyvalue,jdbcType=VARCHAR}, + + + propertyDesc = #{propertydesc,jdbcType=VARCHAR}, + + + propertyIndex = #{propertyindex,jdbcType=VARCHAR}, + + + systemId = #{systemid,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_systemconfig + set propertyKey = #{propertykey,jdbcType=VARCHAR}, + propertyValue = #{propertyvalue,jdbcType=VARCHAR}, + propertyDesc = #{propertydesc,jdbcType=VARCHAR}, + propertyIndex = #{propertyindex,jdbcType=VARCHAR}, + systemId = #{systemid,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussTaskSortMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussTaskSortMapper.xml new file mode 100644 index 0000000..f2cf75b --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussTaskSortMapper.xml @@ -0,0 +1,82 @@ + + + + + + + + + + + id, code, name, desc + + + + delete from tb_pluss_task_sort + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_task_sort (id, code, name, + desc) + values (#{id,jdbcType=INTEGER}, #{code,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, + #{desc,jdbcType=VARCHAR}) + + + insert into tb_pluss_task_sort + + + id, + + + code, + + + name, + + + desc, + + + + + #{id,jdbcType=INTEGER}, + + + #{code,jdbcType=VARCHAR}, + + + #{name,jdbcType=VARCHAR}, + + + #{desc,jdbcType=VARCHAR}, + + + + + update tb_pluss_task_sort + + + code = #{code,jdbcType=VARCHAR}, + + + name = #{name,jdbcType=VARCHAR}, + + + desc = #{desc,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_task_sort + set code = #{code,jdbcType=VARCHAR}, + name = #{name,jdbcType=VARCHAR}, + desc = #{desc,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussUnknownExceptionMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussUnknownExceptionMapper.xml new file mode 100644 index 0000000..cf09d5b --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussUnknownExceptionMapper.xml @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + + + id, name, uri, userId, createTime, updateTime, status + + + params, desc + + + + delete from tb_pluss_unknown_exception + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_unknown_exception (id, name, uri, + userId, createTime, updateTime, + status, params, desc + ) + values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{uri,jdbcType=VARCHAR}, + #{userid,jdbcType=INTEGER}, #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}, + #{status,jdbcType=VARCHAR}, #{params,jdbcType=LONGVARCHAR}, #{desc,jdbcType=LONGVARCHAR} + ) + + + insert into tb_pluss_unknown_exception + + + id, + + + name, + + + uri, + + + userId, + + + createTime, + + + updateTime, + + + status, + + + params, + + + desc, + + + + + #{id,jdbcType=INTEGER}, + + + #{name,jdbcType=VARCHAR}, + + + #{uri,jdbcType=VARCHAR}, + + + #{userid,jdbcType=INTEGER}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{status,jdbcType=VARCHAR}, + + + #{params,jdbcType=LONGVARCHAR}, + + + #{desc,jdbcType=LONGVARCHAR}, + + + + + update tb_pluss_unknown_exception + + + name = #{name,jdbcType=VARCHAR}, + + + uri = #{uri,jdbcType=VARCHAR}, + + + userId = #{userid,jdbcType=INTEGER}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + status = #{status,jdbcType=VARCHAR}, + + + params = #{params,jdbcType=LONGVARCHAR}, + + + desc = #{desc,jdbcType=LONGVARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_unknown_exception + set name = #{name,jdbcType=VARCHAR}, + uri = #{uri,jdbcType=VARCHAR}, + userId = #{userid,jdbcType=INTEGER}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + status = #{status,jdbcType=VARCHAR}, + params = #{params,jdbcType=LONGVARCHAR}, + desc = #{desc,jdbcType=LONGVARCHAR} + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_unknown_exception + set name = #{name,jdbcType=VARCHAR}, + uri = #{uri,jdbcType=VARCHAR}, + userId = #{userid,jdbcType=INTEGER}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + status = #{status,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussUserAddressMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserAddressMapper.xml new file mode 100644 index 0000000..621bdbb --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserAddressMapper.xml @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + id, name, phone, address, areaCode, areaName, isDefault, createTime, userId, type, + defFlag + + + + delete from tb_pluss_user_address + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_user_address (id, name, phone, + address, areaCode, areaName, + isDefault, createTime, userId, + type, defFlag) + values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{phone,jdbcType=VARCHAR}, + #{address,jdbcType=VARCHAR}, #{areacode,jdbcType=VARCHAR}, #{areaname,jdbcType=VARCHAR}, + #{isdefault,jdbcType=INTEGER}, #{createtime,jdbcType=TIMESTAMP}, #{userid,jdbcType=INTEGER}, + #{type,jdbcType=INTEGER}, #{defflag,jdbcType=VARCHAR}) + + + insert into tb_pluss_user_address + + + id, + + + name, + + + phone, + + + address, + + + areaCode, + + + areaName, + + + isDefault, + + + createTime, + + + userId, + + + type, + + + defFlag, + + + + + #{id,jdbcType=INTEGER}, + + + #{name,jdbcType=VARCHAR}, + + + #{phone,jdbcType=VARCHAR}, + + + #{address,jdbcType=VARCHAR}, + + + #{areacode,jdbcType=VARCHAR}, + + + #{areaname,jdbcType=VARCHAR}, + + + #{isdefault,jdbcType=INTEGER}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{userid,jdbcType=INTEGER}, + + + #{type,jdbcType=INTEGER}, + + + #{defflag,jdbcType=VARCHAR}, + + + + + update tb_pluss_user_address + + + name = #{name,jdbcType=VARCHAR}, + + + phone = #{phone,jdbcType=VARCHAR}, + + + address = #{address,jdbcType=VARCHAR}, + + + areaCode = #{areacode,jdbcType=VARCHAR}, + + + areaName = #{areaname,jdbcType=VARCHAR}, + + + isDefault = #{isdefault,jdbcType=INTEGER}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + userId = #{userid,jdbcType=INTEGER}, + + + type = #{type,jdbcType=INTEGER}, + + + defFlag = #{defflag,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_user_address + set name = #{name,jdbcType=VARCHAR}, + phone = #{phone,jdbcType=VARCHAR}, + address = #{address,jdbcType=VARCHAR}, + areaCode = #{areacode,jdbcType=VARCHAR}, + areaName = #{areaname,jdbcType=VARCHAR}, + isDefault = #{isdefault,jdbcType=INTEGER}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + userId = #{userid,jdbcType=INTEGER}, + type = #{type,jdbcType=INTEGER}, + defFlag = #{defflag,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussUserAppMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserAppMapper.xml new file mode 100644 index 0000000..1c11446 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserAppMapper.xml @@ -0,0 +1,573 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, loginName, userId, userName, userType, staffType, logo, level, createDt, updateDt, + extendProfit, status, fansProfit, cashProfit, parentId, agentStaffId, inviteNum, + tradeMoney, certReason, bankStatus, bankReason, merchantCode, merchantName, aisleSwitch, + token, IsVoice, pIdArr, isFixedRate, autoAudit, payEcdemicSwitch, isDirectSeller, + isMarket, isUnionPay, roleCode, levelCode, sort, spreadFlag, userNo, typeMark, areaMark, + evasionVoiceFlag, memberVoiceFlag, jfShopKey + + + + delete from tb_pluss_user_app + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_user_app (id, loginName, userId, + userName, userType, staffType, + logo, level, createDt, + updateDt, extendProfit, status, + fansProfit, cashProfit, parentId, + agentStaffId, inviteNum, tradeMoney, + certReason, bankStatus, bankReason, + merchantCode, merchantName, aisleSwitch, + token, IsVoice, pIdArr, + isFixedRate, autoAudit, payEcdemicSwitch, + isDirectSeller, isMarket, isUnionPay, + roleCode, levelCode, sort, + spreadFlag, userNo, typeMark, + areaMark, evasionVoiceFlag, memberVoiceFlag, + jfShopKey) + values (#{id,jdbcType=INTEGER}, #{loginname,jdbcType=VARCHAR}, #{userid,jdbcType=INTEGER}, + #{username,jdbcType=VARCHAR}, #{usertype,jdbcType=VARCHAR}, #{stafftype,jdbcType=INTEGER}, + #{logo,jdbcType=VARCHAR}, #{level,jdbcType=INTEGER}, #{createdt,jdbcType=TIMESTAMP}, + #{updatedt,jdbcType=TIMESTAMP}, #{extendprofit,jdbcType=DOUBLE}, #{status,jdbcType=INTEGER}, + #{fansprofit,jdbcType=DOUBLE}, #{cashprofit,jdbcType=DOUBLE}, #{parentid,jdbcType=INTEGER}, + #{agentstaffid,jdbcType=INTEGER}, #{invitenum,jdbcType=VARCHAR}, #{trademoney,jdbcType=DOUBLE}, + #{certreason,jdbcType=VARCHAR}, #{bankstatus,jdbcType=INTEGER}, #{bankreason,jdbcType=VARCHAR}, + #{merchantcode,jdbcType=VARCHAR}, #{merchantname,jdbcType=VARCHAR}, #{aisleswitch,jdbcType=INTEGER}, + #{token,jdbcType=VARCHAR}, #{isvoice,jdbcType=VARCHAR}, #{pidarr,jdbcType=VARCHAR}, + #{isfixedrate,jdbcType=CHAR}, #{autoaudit,jdbcType=VARCHAR}, #{payecdemicswitch,jdbcType=VARCHAR}, + #{isdirectseller,jdbcType=VARCHAR}, #{ismarket,jdbcType=VARCHAR}, #{isunionpay,jdbcType=VARCHAR}, + #{rolecode,jdbcType=VARCHAR}, #{levelcode,jdbcType=VARCHAR}, #{sort,jdbcType=INTEGER}, + #{spreadflag,jdbcType=VARCHAR}, #{userno,jdbcType=VARCHAR}, #{typemark,jdbcType=INTEGER}, + #{areamark,jdbcType=INTEGER}, #{evasionvoiceflag,jdbcType=VARCHAR}, #{membervoiceflag,jdbcType=VARCHAR}, + #{jfshopkey,jdbcType=VARCHAR}) + + + insert into tb_pluss_user_app + + + id, + + + loginName, + + + userId, + + + userName, + + + userType, + + + staffType, + + + logo, + + + level, + + + createDt, + + + updateDt, + + + extendProfit, + + + status, + + + fansProfit, + + + cashProfit, + + + parentId, + + + agentStaffId, + + + inviteNum, + + + tradeMoney, + + + certReason, + + + bankStatus, + + + bankReason, + + + merchantCode, + + + merchantName, + + + aisleSwitch, + + + token, + + + IsVoice, + + + pIdArr, + + + isFixedRate, + + + autoAudit, + + + payEcdemicSwitch, + + + isDirectSeller, + + + isMarket, + + + isUnionPay, + + + roleCode, + + + levelCode, + + + sort, + + + spreadFlag, + + + userNo, + + + typeMark, + + + areaMark, + + + evasionVoiceFlag, + + + memberVoiceFlag, + + + jfShopKey, + + + + + #{id,jdbcType=INTEGER}, + + + #{loginname,jdbcType=VARCHAR}, + + + #{userid,jdbcType=INTEGER}, + + + #{username,jdbcType=VARCHAR}, + + + #{usertype,jdbcType=VARCHAR}, + + + #{stafftype,jdbcType=INTEGER}, + + + #{logo,jdbcType=VARCHAR}, + + + #{level,jdbcType=INTEGER}, + + + #{createdt,jdbcType=TIMESTAMP}, + + + #{updatedt,jdbcType=TIMESTAMP}, + + + #{extendprofit,jdbcType=DOUBLE}, + + + #{status,jdbcType=INTEGER}, + + + #{fansprofit,jdbcType=DOUBLE}, + + + #{cashprofit,jdbcType=DOUBLE}, + + + #{parentid,jdbcType=INTEGER}, + + + #{agentstaffid,jdbcType=INTEGER}, + + + #{invitenum,jdbcType=VARCHAR}, + + + #{trademoney,jdbcType=DOUBLE}, + + + #{certreason,jdbcType=VARCHAR}, + + + #{bankstatus,jdbcType=INTEGER}, + + + #{bankreason,jdbcType=VARCHAR}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{merchantname,jdbcType=VARCHAR}, + + + #{aisleswitch,jdbcType=INTEGER}, + + + #{token,jdbcType=VARCHAR}, + + + #{isvoice,jdbcType=VARCHAR}, + + + #{pidarr,jdbcType=VARCHAR}, + + + #{isfixedrate,jdbcType=CHAR}, + + + #{autoaudit,jdbcType=VARCHAR}, + + + #{payecdemicswitch,jdbcType=VARCHAR}, + + + #{isdirectseller,jdbcType=VARCHAR}, + + + #{ismarket,jdbcType=VARCHAR}, + + + #{isunionpay,jdbcType=VARCHAR}, + + + #{rolecode,jdbcType=VARCHAR}, + + + #{levelcode,jdbcType=VARCHAR}, + + + #{sort,jdbcType=INTEGER}, + + + #{spreadflag,jdbcType=VARCHAR}, + + + #{userno,jdbcType=VARCHAR}, + + + #{typemark,jdbcType=INTEGER}, + + + #{areamark,jdbcType=INTEGER}, + + + #{evasionvoiceflag,jdbcType=VARCHAR}, + + + #{membervoiceflag,jdbcType=VARCHAR}, + + + #{jfshopkey,jdbcType=VARCHAR}, + + + + + update tb_pluss_user_app + + + loginName = #{loginname,jdbcType=VARCHAR}, + + + userId = #{userid,jdbcType=INTEGER}, + + + userName = #{username,jdbcType=VARCHAR}, + + + userType = #{usertype,jdbcType=VARCHAR}, + + + staffType = #{stafftype,jdbcType=INTEGER}, + + + logo = #{logo,jdbcType=VARCHAR}, + + + level = #{level,jdbcType=INTEGER}, + + + createDt = #{createdt,jdbcType=TIMESTAMP}, + + + updateDt = #{updatedt,jdbcType=TIMESTAMP}, + + + extendProfit = #{extendprofit,jdbcType=DOUBLE}, + + + status = #{status,jdbcType=INTEGER}, + + + fansProfit = #{fansprofit,jdbcType=DOUBLE}, + + + cashProfit = #{cashprofit,jdbcType=DOUBLE}, + + + parentId = #{parentid,jdbcType=INTEGER}, + + + agentStaffId = #{agentstaffid,jdbcType=INTEGER}, + + + inviteNum = #{invitenum,jdbcType=VARCHAR}, + + + tradeMoney = #{trademoney,jdbcType=DOUBLE}, + + + certReason = #{certreason,jdbcType=VARCHAR}, + + + bankStatus = #{bankstatus,jdbcType=INTEGER}, + + + bankReason = #{bankreason,jdbcType=VARCHAR}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + merchantName = #{merchantname,jdbcType=VARCHAR}, + + + aisleSwitch = #{aisleswitch,jdbcType=INTEGER}, + + + token = #{token,jdbcType=VARCHAR}, + + + IsVoice = #{isvoice,jdbcType=VARCHAR}, + + + pIdArr = #{pidarr,jdbcType=VARCHAR}, + + + isFixedRate = #{isfixedrate,jdbcType=CHAR}, + + + autoAudit = #{autoaudit,jdbcType=VARCHAR}, + + + payEcdemicSwitch = #{payecdemicswitch,jdbcType=VARCHAR}, + + + isDirectSeller = #{isdirectseller,jdbcType=VARCHAR}, + + + isMarket = #{ismarket,jdbcType=VARCHAR}, + + + isUnionPay = #{isunionpay,jdbcType=VARCHAR}, + + + roleCode = #{rolecode,jdbcType=VARCHAR}, + + + levelCode = #{levelcode,jdbcType=VARCHAR}, + + + sort = #{sort,jdbcType=INTEGER}, + + + spreadFlag = #{spreadflag,jdbcType=VARCHAR}, + + + userNo = #{userno,jdbcType=VARCHAR}, + + + typeMark = #{typemark,jdbcType=INTEGER}, + + + areaMark = #{areamark,jdbcType=INTEGER}, + + + evasionVoiceFlag = #{evasionvoiceflag,jdbcType=VARCHAR}, + + + memberVoiceFlag = #{membervoiceflag,jdbcType=VARCHAR}, + + + jfShopKey = #{jfshopkey,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_user_app + set loginName = #{loginname,jdbcType=VARCHAR}, + userId = #{userid,jdbcType=INTEGER}, + userName = #{username,jdbcType=VARCHAR}, + userType = #{usertype,jdbcType=VARCHAR}, + staffType = #{stafftype,jdbcType=INTEGER}, + logo = #{logo,jdbcType=VARCHAR}, + level = #{level,jdbcType=INTEGER}, + createDt = #{createdt,jdbcType=TIMESTAMP}, + updateDt = #{updatedt,jdbcType=TIMESTAMP}, + extendProfit = #{extendprofit,jdbcType=DOUBLE}, + status = #{status,jdbcType=INTEGER}, + fansProfit = #{fansprofit,jdbcType=DOUBLE}, + cashProfit = #{cashprofit,jdbcType=DOUBLE}, + parentId = #{parentid,jdbcType=INTEGER}, + agentStaffId = #{agentstaffid,jdbcType=INTEGER}, + inviteNum = #{invitenum,jdbcType=VARCHAR}, + tradeMoney = #{trademoney,jdbcType=DOUBLE}, + certReason = #{certreason,jdbcType=VARCHAR}, + bankStatus = #{bankstatus,jdbcType=INTEGER}, + bankReason = #{bankreason,jdbcType=VARCHAR}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + merchantName = #{merchantname,jdbcType=VARCHAR}, + aisleSwitch = #{aisleswitch,jdbcType=INTEGER}, + token = #{token,jdbcType=VARCHAR}, + IsVoice = #{isvoice,jdbcType=VARCHAR}, + pIdArr = #{pidarr,jdbcType=VARCHAR}, + isFixedRate = #{isfixedrate,jdbcType=CHAR}, + autoAudit = #{autoaudit,jdbcType=VARCHAR}, + payEcdemicSwitch = #{payecdemicswitch,jdbcType=VARCHAR}, + isDirectSeller = #{isdirectseller,jdbcType=VARCHAR}, + isMarket = #{ismarket,jdbcType=VARCHAR}, + isUnionPay = #{isunionpay,jdbcType=VARCHAR}, + roleCode = #{rolecode,jdbcType=VARCHAR}, + levelCode = #{levelcode,jdbcType=VARCHAR}, + sort = #{sort,jdbcType=INTEGER}, + spreadFlag = #{spreadflag,jdbcType=VARCHAR}, + userNo = #{userno,jdbcType=VARCHAR}, + typeMark = #{typemark,jdbcType=INTEGER}, + areaMark = #{areamark,jdbcType=INTEGER}, + evasionVoiceFlag = #{evasionvoiceflag,jdbcType=VARCHAR}, + memberVoiceFlag = #{membervoiceflag,jdbcType=VARCHAR}, + jfShopKey = #{jfshopkey,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + + + + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussUserAreaRewardFlowMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserAreaRewardFlowMapper.xml new file mode 100644 index 0000000..5148c5e --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserAreaRewardFlowMapper.xml @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + id, userId, roleCode, areaFlow, rewardAmt, createTime, createDate, profitDate + + + + delete from tb_pluss_user_area_reward_flow + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_user_area_reward_flow (id, userId, roleCode, + areaFlow, rewardAmt, createTime, + createDate, profitDate) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{rolecode,jdbcType=VARCHAR}, + #{areaflow,jdbcType=DECIMAL}, #{rewardamt,jdbcType=DECIMAL}, #{createtime,jdbcType=TIMESTAMP}, + #{createdate,jdbcType=DATE}, #{profitdate,jdbcType=DATE}) + + + insert into tb_pluss_user_area_reward_flow + + + id, + + + userId, + + + roleCode, + + + areaFlow, + + + rewardAmt, + + + createTime, + + + createDate, + + + profitDate, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{rolecode,jdbcType=VARCHAR}, + + + #{areaflow,jdbcType=DECIMAL}, + + + #{rewardamt,jdbcType=DECIMAL}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{createdate,jdbcType=DATE}, + + + #{profitdate,jdbcType=DATE}, + + + + + update tb_pluss_user_area_reward_flow + + + userId = #{userid,jdbcType=INTEGER}, + + + roleCode = #{rolecode,jdbcType=VARCHAR}, + + + areaFlow = #{areaflow,jdbcType=DECIMAL}, + + + rewardAmt = #{rewardamt,jdbcType=DECIMAL}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + createDate = #{createdate,jdbcType=DATE}, + + + profitDate = #{profitdate,jdbcType=DATE}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_user_area_reward_flow + set userId = #{userid,jdbcType=INTEGER}, + roleCode = #{rolecode,jdbcType=VARCHAR}, + areaFlow = #{areaflow,jdbcType=DECIMAL}, + rewardAmt = #{rewardamt,jdbcType=DECIMAL}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + createDate = #{createdate,jdbcType=DATE}, + profitDate = #{profitdate,jdbcType=DATE} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussUserAssessMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserAssessMapper.xml new file mode 100644 index 0000000..9a254a0 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserAssessMapper.xml @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + id, userId, roleCode, directMercNum, validMercNum, expireTime, isCheck, isWhite, + reason, remark, createTime + + + + delete from tb_pluss_user_assess + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_user_assess (id, userId, roleCode, + directMercNum, validMercNum, expireTime, + isCheck, isWhite, reason, + remark, createTime) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{rolecode,jdbcType=VARCHAR}, + #{directmercnum,jdbcType=INTEGER}, #{validmercnum,jdbcType=INTEGER}, #{expiretime,jdbcType=TIMESTAMP}, + #{ischeck,jdbcType=TINYINT}, #{iswhite,jdbcType=TINYINT}, #{reason,jdbcType=VARCHAR}, + #{remark,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_user_assess + + + id, + + + userId, + + + roleCode, + + + directMercNum, + + + validMercNum, + + + expireTime, + + + isCheck, + + + isWhite, + + + reason, + + + remark, + + + createTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{rolecode,jdbcType=VARCHAR}, + + + #{directmercnum,jdbcType=INTEGER}, + + + #{validmercnum,jdbcType=INTEGER}, + + + #{expiretime,jdbcType=TIMESTAMP}, + + + #{ischeck,jdbcType=TINYINT}, + + + #{iswhite,jdbcType=TINYINT}, + + + #{reason,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_user_assess + + + userId = #{userid,jdbcType=INTEGER}, + + + roleCode = #{rolecode,jdbcType=VARCHAR}, + + + directMercNum = #{directmercnum,jdbcType=INTEGER}, + + + validMercNum = #{validmercnum,jdbcType=INTEGER}, + + + expireTime = #{expiretime,jdbcType=TIMESTAMP}, + + + isCheck = #{ischeck,jdbcType=TINYINT}, + + + isWhite = #{iswhite,jdbcType=TINYINT}, + + + reason = #{reason,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_user_assess + set userId = #{userid,jdbcType=INTEGER}, + roleCode = #{rolecode,jdbcType=VARCHAR}, + directMercNum = #{directmercnum,jdbcType=INTEGER}, + validMercNum = #{validmercnum,jdbcType=INTEGER}, + expireTime = #{expiretime,jdbcType=TIMESTAMP}, + isCheck = #{ischeck,jdbcType=TINYINT}, + isWhite = #{iswhite,jdbcType=TINYINT}, + reason = #{reason,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussUserDeviceCashMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserDeviceCashMapper.xml new file mode 100644 index 0000000..d062592 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserDeviceCashMapper.xml @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + id, orderNo, amount, status, userId, createTime, refundNo + + + + delete from tb_pluss_user_device_cash + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_user_device_cash (id, orderNo, amount, + status, userId, createTime, + refundNo) + values (#{id,jdbcType=INTEGER}, #{orderno,jdbcType=VARCHAR}, #{amount,jdbcType=DECIMAL}, + #{status,jdbcType=VARCHAR}, #{userid,jdbcType=INTEGER}, #{createtime,jdbcType=TIMESTAMP}, + #{refundno,jdbcType=VARCHAR}) + + + insert into tb_pluss_user_device_cash + + + id, + + + orderNo, + + + amount, + + + status, + + + userId, + + + createTime, + + + refundNo, + + + + + #{id,jdbcType=INTEGER}, + + + #{orderno,jdbcType=VARCHAR}, + + + #{amount,jdbcType=DECIMAL}, + + + #{status,jdbcType=VARCHAR}, + + + #{userid,jdbcType=INTEGER}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{refundno,jdbcType=VARCHAR}, + + + + + update tb_pluss_user_device_cash + + + orderNo = #{orderno,jdbcType=VARCHAR}, + + + amount = #{amount,jdbcType=DECIMAL}, + + + status = #{status,jdbcType=VARCHAR}, + + + userId = #{userid,jdbcType=INTEGER}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + refundNo = #{refundno,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_user_device_cash + set orderNo = #{orderno,jdbcType=VARCHAR}, + amount = #{amount,jdbcType=DECIMAL}, + status = #{status,jdbcType=VARCHAR}, + userId = #{userid,jdbcType=INTEGER}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + refundNo = #{refundno,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussUserExtraMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserExtraMapper.xml new file mode 100644 index 0000000..acbc605 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserExtraMapper.xml @@ -0,0 +1,106 @@ + + + + + + + + + + + + + id, userId, key, value, createTime, updateTime + + + + delete from tb_pluss_user_extra + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_user_extra (id, userId, key, + value, createTime, updateTime + ) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{key,jdbcType=VARCHAR}, + #{value,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP} + ) + + + insert into tb_pluss_user_extra + + + id, + + + userId, + + + key, + + + value, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{key,jdbcType=VARCHAR}, + + + #{value,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_user_extra + + + userId = #{userid,jdbcType=INTEGER}, + + + key = #{key,jdbcType=VARCHAR}, + + + value = #{value,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_user_extra + set userId = #{userid,jdbcType=INTEGER}, + key = #{key,jdbcType=VARCHAR}, + value = #{value,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussUserInfoMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserInfoMapper.xml new file mode 100644 index 0000000..982bb0b --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserInfoMapper.xml @@ -0,0 +1,467 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, loginName, trueName, provinceCode, cityCode, sex, phone, email, status, password, + creator, createTime, updator, updateTime, version, parentId, areaId, areaCode, source, + merchantCode, storeId, payPassword, faceCert, faceCompare, openId, channelCode + + + + delete from tb_pluss_user_info + where id = #{id,jdbcType=BIGINT} + + + insert into tb_pluss_user_info (id, loginName, trueName, + provinceCode, cityCode, sex, + phone, email, status, + password, creator, createTime, + updator, updateTime, version, + parentId, areaId, areaCode, + source, merchantCode, storeId, + payPassword, faceCert, faceCompare, + openId, channelCode) + values (#{id,jdbcType=BIGINT}, #{loginname,jdbcType=VARCHAR}, #{truename,jdbcType=VARCHAR}, + #{provincecode,jdbcType=VARCHAR}, #{citycode,jdbcType=VARCHAR}, #{sex,jdbcType=VARCHAR}, + #{phone,jdbcType=VARCHAR}, #{email,jdbcType=VARCHAR}, #{status,jdbcType=INTEGER}, + #{password,jdbcType=VARCHAR}, #{creator,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, + #{updator,jdbcType=VARCHAR}, #{updatetime,jdbcType=TIMESTAMP}, #{version,jdbcType=VARCHAR}, + #{parentid,jdbcType=BIGINT}, #{areaid,jdbcType=INTEGER}, #{areacode,jdbcType=VARCHAR}, + #{source,jdbcType=VARCHAR}, #{merchantcode,jdbcType=VARCHAR}, #{storeid,jdbcType=VARCHAR}, + #{paypassword,jdbcType=VARCHAR}, #{facecert,jdbcType=VARCHAR}, #{facecompare,jdbcType=VARCHAR}, + #{openid,jdbcType=VARCHAR}, #{channelcode,jdbcType=VARCHAR}) + + + insert into tb_pluss_user_info + + + id, + + + loginName, + + + trueName, + + + provinceCode, + + + cityCode, + + + sex, + + + phone, + + + email, + + + status, + + + password, + + + creator, + + + createTime, + + + updator, + + + updateTime, + + + version, + + + parentId, + + + areaId, + + + areaCode, + + + source, + + + merchantCode, + + + storeId, + + + payPassword, + + + faceCert, + + + faceCompare, + + + openId, + + + channelCode, + + + + + #{id,jdbcType=BIGINT}, + + + #{loginname,jdbcType=VARCHAR}, + + + #{truename,jdbcType=VARCHAR}, + + + #{provincecode,jdbcType=VARCHAR}, + + + #{citycode,jdbcType=VARCHAR}, + + + #{sex,jdbcType=VARCHAR}, + + + #{phone,jdbcType=VARCHAR}, + + + #{email,jdbcType=VARCHAR}, + + + #{status,jdbcType=INTEGER}, + + + #{password,jdbcType=VARCHAR}, + + + #{creator,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updator,jdbcType=VARCHAR}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{version,jdbcType=VARCHAR}, + + + #{parentid,jdbcType=BIGINT}, + + + #{areaid,jdbcType=INTEGER}, + + + #{areacode,jdbcType=VARCHAR}, + + + #{source,jdbcType=VARCHAR}, + + + #{merchantcode,jdbcType=VARCHAR}, + + + #{storeid,jdbcType=VARCHAR}, + + + #{paypassword,jdbcType=VARCHAR}, + + + #{facecert,jdbcType=VARCHAR}, + + + #{facecompare,jdbcType=VARCHAR}, + + + #{openid,jdbcType=VARCHAR}, + + + #{channelcode,jdbcType=VARCHAR}, + + + + + update tb_pluss_user_info + + + loginName = #{loginname,jdbcType=VARCHAR}, + + + trueName = #{truename,jdbcType=VARCHAR}, + + + provinceCode = #{provincecode,jdbcType=VARCHAR}, + + + cityCode = #{citycode,jdbcType=VARCHAR}, + + + sex = #{sex,jdbcType=VARCHAR}, + + + phone = #{phone,jdbcType=VARCHAR}, + + + email = #{email,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=INTEGER}, + + + password = #{password,jdbcType=VARCHAR}, + + + creator = #{creator,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updator = #{updator,jdbcType=VARCHAR}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + version = #{version,jdbcType=VARCHAR}, + + + parentId = #{parentid,jdbcType=BIGINT}, + + + areaId = #{areaid,jdbcType=INTEGER}, + + + areaCode = #{areacode,jdbcType=VARCHAR}, + + + source = #{source,jdbcType=VARCHAR}, + + + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + + + storeId = #{storeid,jdbcType=VARCHAR}, + + + payPassword = #{paypassword,jdbcType=VARCHAR}, + + + faceCert = #{facecert,jdbcType=VARCHAR}, + + + faceCompare = #{facecompare,jdbcType=VARCHAR}, + + + openId = #{openid,jdbcType=VARCHAR}, + + + channelCode = #{channelcode,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=BIGINT} + + + update tb_pluss_user_info + set loginName = #{loginname,jdbcType=VARCHAR}, + trueName = #{truename,jdbcType=VARCHAR}, + provinceCode = #{provincecode,jdbcType=VARCHAR}, + cityCode = #{citycode,jdbcType=VARCHAR}, + sex = #{sex,jdbcType=VARCHAR}, + phone = #{phone,jdbcType=VARCHAR}, + email = #{email,jdbcType=VARCHAR}, + status = #{status,jdbcType=INTEGER}, + password = #{password,jdbcType=VARCHAR}, + creator = #{creator,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updator = #{updator,jdbcType=VARCHAR}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + version = #{version,jdbcType=VARCHAR}, + parentId = #{parentid,jdbcType=BIGINT}, + areaId = #{areaid,jdbcType=INTEGER}, + areaCode = #{areacode,jdbcType=VARCHAR}, + source = #{source,jdbcType=VARCHAR}, + merchantCode = #{merchantcode,jdbcType=VARCHAR}, + storeId = #{storeid,jdbcType=VARCHAR}, + payPassword = #{paypassword,jdbcType=VARCHAR}, + faceCert = #{facecert,jdbcType=VARCHAR}, + faceCompare = #{facecompare,jdbcType=VARCHAR}, + openId = #{openid,jdbcType=VARCHAR}, + channelCode = #{channelcode,jdbcType=VARCHAR} + where id = #{id,jdbcType=BIGINT} + + + + + + + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussUserIntegralMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserIntegralMapper.xml new file mode 100644 index 0000000..169db06 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserIntegralMapper.xml @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + + id, userId, orderNumber, integral, orderAmt, type, source, status, remark, createTime + + + + delete from tb_pluss_user_integral + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_user_integral (id, userId, orderNumber, + integral, orderAmt, type, + source, status, remark, + createTime) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{ordernumber,jdbcType=VARCHAR}, + #{integral,jdbcType=DECIMAL}, #{orderamt,jdbcType=DECIMAL}, #{type,jdbcType=VARCHAR}, + #{source,jdbcType=VARCHAR}, #{status,jdbcType=INTEGER}, #{remark,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_user_integral + + + id, + + + userId, + + + orderNumber, + + + integral, + + + orderAmt, + + + type, + + + source, + + + status, + + + remark, + + + createTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{ordernumber,jdbcType=VARCHAR}, + + + #{integral,jdbcType=DECIMAL}, + + + #{orderamt,jdbcType=DECIMAL}, + + + #{type,jdbcType=VARCHAR}, + + + #{source,jdbcType=VARCHAR}, + + + #{status,jdbcType=INTEGER}, + + + #{remark,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_user_integral + + + userId = #{userid,jdbcType=INTEGER}, + + + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + + + integral = #{integral,jdbcType=DECIMAL}, + + + orderAmt = #{orderamt,jdbcType=DECIMAL}, + + + type = #{type,jdbcType=VARCHAR}, + + + source = #{source,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=INTEGER}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_user_integral + set userId = #{userid,jdbcType=INTEGER}, + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + integral = #{integral,jdbcType=DECIMAL}, + orderAmt = #{orderamt,jdbcType=DECIMAL}, + type = #{type,jdbcType=VARCHAR}, + source = #{source,jdbcType=VARCHAR}, + status = #{status,jdbcType=INTEGER}, + remark = #{remark,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussUserIntegralUseMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserIntegralUseMapper.xml new file mode 100644 index 0000000..28965f9 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserIntegralUseMapper.xml @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + id, name, userId, integral, status, remark, orderNumber, handleTime, createTime + + + + delete from tb_pluss_user_integral_use + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_user_integral_use (id, name, userId, + integral, status, remark, + orderNumber, handleTime, createTime + ) + values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{userid,jdbcType=INTEGER}, + #{integral,jdbcType=DECIMAL}, #{status,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR}, + #{ordernumber,jdbcType=VARCHAR}, #{handletime,jdbcType=TIMESTAMP}, #{createtime,jdbcType=TIMESTAMP} + ) + + + insert into tb_pluss_user_integral_use + + + id, + + + name, + + + userId, + + + integral, + + + status, + + + remark, + + + orderNumber, + + + handleTime, + + + createTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{name,jdbcType=VARCHAR}, + + + #{userid,jdbcType=INTEGER}, + + + #{integral,jdbcType=DECIMAL}, + + + #{status,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{ordernumber,jdbcType=VARCHAR}, + + + #{handletime,jdbcType=TIMESTAMP}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_user_integral_use + + + name = #{name,jdbcType=VARCHAR}, + + + userId = #{userid,jdbcType=INTEGER}, + + + integral = #{integral,jdbcType=DECIMAL}, + + + status = #{status,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + + + handleTime = #{handletime,jdbcType=TIMESTAMP}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_user_integral_use + set name = #{name,jdbcType=VARCHAR}, + userId = #{userid,jdbcType=INTEGER}, + integral = #{integral,jdbcType=DECIMAL}, + status = #{status,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + handleTime = #{handletime,jdbcType=TIMESTAMP}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussUserIpRecordMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserIpRecordMapper.xml new file mode 100644 index 0000000..340d988 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserIpRecordMapper.xml @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + id, userId, regIp, regTime, auditIp, auditTime, createTime, updateTime + + + + delete from tb_pluss_user_ip_record + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_user_ip_record (id, userId, regIp, + regTime, auditIp, auditTime, + createTime, updateTime) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{regip,jdbcType=VARCHAR}, + #{regtime,jdbcType=TIMESTAMP}, #{auditip,jdbcType=VARCHAR}, #{audittime,jdbcType=TIMESTAMP}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_user_ip_record + + + id, + + + userId, + + + regIp, + + + regTime, + + + auditIp, + + + auditTime, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{regip,jdbcType=VARCHAR}, + + + #{regtime,jdbcType=TIMESTAMP}, + + + #{auditip,jdbcType=VARCHAR}, + + + #{audittime,jdbcType=TIMESTAMP}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_user_ip_record + + + userId = #{userid,jdbcType=INTEGER}, + + + regIp = #{regip,jdbcType=VARCHAR}, + + + regTime = #{regtime,jdbcType=TIMESTAMP}, + + + auditIp = #{auditip,jdbcType=VARCHAR}, + + + auditTime = #{audittime,jdbcType=TIMESTAMP}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_user_ip_record + set userId = #{userid,jdbcType=INTEGER}, + regIp = #{regip,jdbcType=VARCHAR}, + regTime = #{regtime,jdbcType=TIMESTAMP}, + auditIp = #{auditip,jdbcType=VARCHAR}, + auditTime = #{audittime,jdbcType=TIMESTAMP}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussUserLevelMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserLevelMapper.xml new file mode 100644 index 0000000..2091227 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserLevelMapper.xml @@ -0,0 +1,199 @@ + + + + + + + + + + + + + + + + + + + + + id, roleCode, levelName, levelCode, rate, quota, directRate, indirectRate, t2Scale, + t3Scale, dividScale, areaScale, jftRate, createTime + + + + delete from tb_pluss_user_level + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_user_level (id, roleCode, levelName, + levelCode, rate, quota, + directRate, indirectRate, t2Scale, + t3Scale, dividScale, areaScale, + jftRate, createTime) + values (#{id,jdbcType=INTEGER}, #{rolecode,jdbcType=VARCHAR}, #{levelname,jdbcType=VARCHAR}, + #{levelcode,jdbcType=VARCHAR}, #{rate,jdbcType=DECIMAL}, #{quota,jdbcType=DECIMAL}, + #{directrate,jdbcType=DECIMAL}, #{indirectrate,jdbcType=DECIMAL}, #{t2scale,jdbcType=DECIMAL}, + #{t3scale,jdbcType=DECIMAL}, #{dividscale,jdbcType=DECIMAL}, #{areascale,jdbcType=DECIMAL}, + #{jftrate,jdbcType=DECIMAL}, #{createtime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_user_level + + + id, + + + roleCode, + + + levelName, + + + levelCode, + + + rate, + + + quota, + + + directRate, + + + indirectRate, + + + t2Scale, + + + t3Scale, + + + dividScale, + + + areaScale, + + + jftRate, + + + createTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{rolecode,jdbcType=VARCHAR}, + + + #{levelname,jdbcType=VARCHAR}, + + + #{levelcode,jdbcType=VARCHAR}, + + + #{rate,jdbcType=DECIMAL}, + + + #{quota,jdbcType=DECIMAL}, + + + #{directrate,jdbcType=DECIMAL}, + + + #{indirectrate,jdbcType=DECIMAL}, + + + #{t2scale,jdbcType=DECIMAL}, + + + #{t3scale,jdbcType=DECIMAL}, + + + #{dividscale,jdbcType=DECIMAL}, + + + #{areascale,jdbcType=DECIMAL}, + + + #{jftrate,jdbcType=DECIMAL}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_user_level + + + roleCode = #{rolecode,jdbcType=VARCHAR}, + + + levelName = #{levelname,jdbcType=VARCHAR}, + + + levelCode = #{levelcode,jdbcType=VARCHAR}, + + + rate = #{rate,jdbcType=DECIMAL}, + + + quota = #{quota,jdbcType=DECIMAL}, + + + directRate = #{directrate,jdbcType=DECIMAL}, + + + indirectRate = #{indirectrate,jdbcType=DECIMAL}, + + + t2Scale = #{t2scale,jdbcType=DECIMAL}, + + + t3Scale = #{t3scale,jdbcType=DECIMAL}, + + + dividScale = #{dividscale,jdbcType=DECIMAL}, + + + areaScale = #{areascale,jdbcType=DECIMAL}, + + + jftRate = #{jftrate,jdbcType=DECIMAL}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_user_level + set roleCode = #{rolecode,jdbcType=VARCHAR}, + levelName = #{levelname,jdbcType=VARCHAR}, + levelCode = #{levelcode,jdbcType=VARCHAR}, + rate = #{rate,jdbcType=DECIMAL}, + quota = #{quota,jdbcType=DECIMAL}, + directRate = #{directrate,jdbcType=DECIMAL}, + indirectRate = #{indirectrate,jdbcType=DECIMAL}, + t2Scale = #{t2scale,jdbcType=DECIMAL}, + t3Scale = #{t3scale,jdbcType=DECIMAL}, + dividScale = #{dividscale,jdbcType=DECIMAL}, + areaScale = #{areascale,jdbcType=DECIMAL}, + jftRate = #{jftrate,jdbcType=DECIMAL}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussUserManageProfitMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserManageProfitMapper.xml new file mode 100644 index 0000000..ce3f425 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserManageProfitMapper.xml @@ -0,0 +1,188 @@ + + + + + + + + + + + + + + + + + + + + id, userId, parentId, roleCode, levelCode, t2Flow, t3Flow, t2Profit, t3Profit, createTime, + profitDate, profitMonth, remark + + + + delete from tb_pluss_user_manage_profit + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_user_manage_profit (id, userId, parentId, + roleCode, levelCode, t2Flow, + t3Flow, t2Profit, t3Profit, + createTime, profitDate, profitMonth, + remark) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{parentid,jdbcType=INTEGER}, + #{rolecode,jdbcType=VARCHAR}, #{levelcode,jdbcType=VARCHAR}, #{t2flow,jdbcType=DECIMAL}, + #{t3flow,jdbcType=DECIMAL}, #{t2profit,jdbcType=DECIMAL}, #{t3profit,jdbcType=DECIMAL}, + #{createtime,jdbcType=TIMESTAMP}, #{profitdate,jdbcType=DATE}, #{profitmonth,jdbcType=VARCHAR}, + #{remark,jdbcType=VARCHAR}) + + + insert into tb_pluss_user_manage_profit + + + id, + + + userId, + + + parentId, + + + roleCode, + + + levelCode, + + + t2Flow, + + + t3Flow, + + + t2Profit, + + + t3Profit, + + + createTime, + + + profitDate, + + + profitMonth, + + + remark, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{parentid,jdbcType=INTEGER}, + + + #{rolecode,jdbcType=VARCHAR}, + + + #{levelcode,jdbcType=VARCHAR}, + + + #{t2flow,jdbcType=DECIMAL}, + + + #{t3flow,jdbcType=DECIMAL}, + + + #{t2profit,jdbcType=DECIMAL}, + + + #{t3profit,jdbcType=DECIMAL}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{profitdate,jdbcType=DATE}, + + + #{profitmonth,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + + + update tb_pluss_user_manage_profit + + + userId = #{userid,jdbcType=INTEGER}, + + + parentId = #{parentid,jdbcType=INTEGER}, + + + roleCode = #{rolecode,jdbcType=VARCHAR}, + + + levelCode = #{levelcode,jdbcType=VARCHAR}, + + + t2Flow = #{t2flow,jdbcType=DECIMAL}, + + + t3Flow = #{t3flow,jdbcType=DECIMAL}, + + + t2Profit = #{t2profit,jdbcType=DECIMAL}, + + + t3Profit = #{t3profit,jdbcType=DECIMAL}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + profitDate = #{profitdate,jdbcType=DATE}, + + + profitMonth = #{profitmonth,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_user_manage_profit + set userId = #{userid,jdbcType=INTEGER}, + parentId = #{parentid,jdbcType=INTEGER}, + roleCode = #{rolecode,jdbcType=VARCHAR}, + levelCode = #{levelcode,jdbcType=VARCHAR}, + t2Flow = #{t2flow,jdbcType=DECIMAL}, + t3Flow = #{t3flow,jdbcType=DECIMAL}, + t2Profit = #{t2profit,jdbcType=DECIMAL}, + t3Profit = #{t3profit,jdbcType=DECIMAL}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + profitDate = #{profitdate,jdbcType=DATE}, + profitMonth = #{profitmonth,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussUserMultipleRemarkMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserMultipleRemarkMapper.xml new file mode 100644 index 0000000..ffb2188 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserMultipleRemarkMapper.xml @@ -0,0 +1,93 @@ + + + + + + + + + + + + id, userId, code, remark, createTime + + + + delete from tb_pluss_user_multiple_remark + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_user_multiple_remark (id, userId, code, + remark, createTime) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{code,jdbcType=VARCHAR}, + #{remark,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_user_multiple_remark + + + id, + + + userId, + + + code, + + + remark, + + + createTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{code,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_user_multiple_remark + + + userId = #{userid,jdbcType=INTEGER}, + + + code = #{code,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_user_multiple_remark + set userId = #{userid,jdbcType=INTEGER}, + code = #{code,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussUserOrganMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserOrganMapper.xml new file mode 100644 index 0000000..ad76001 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserOrganMapper.xml @@ -0,0 +1,106 @@ + + + + + + + + + + + + + id, userId, organCode, organName, organTypeCode, organTypeName + + + + delete from tb_pluss_user_organ + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_user_organ (id, userId, organCode, + organName, organTypeCode, organTypeName + ) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=BIGINT}, #{organcode,jdbcType=VARCHAR}, + #{organname,jdbcType=VARCHAR}, #{organtypecode,jdbcType=VARCHAR}, #{organtypename,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_user_organ + + + id, + + + userId, + + + organCode, + + + organName, + + + organTypeCode, + + + organTypeName, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=BIGINT}, + + + #{organcode,jdbcType=VARCHAR}, + + + #{organname,jdbcType=VARCHAR}, + + + #{organtypecode,jdbcType=VARCHAR}, + + + #{organtypename,jdbcType=VARCHAR}, + + + + + update tb_pluss_user_organ + + + userId = #{userid,jdbcType=BIGINT}, + + + organCode = #{organcode,jdbcType=VARCHAR}, + + + organName = #{organname,jdbcType=VARCHAR}, + + + organTypeCode = #{organtypecode,jdbcType=VARCHAR}, + + + organTypeName = #{organtypename,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_user_organ + set userId = #{userid,jdbcType=BIGINT}, + organCode = #{organcode,jdbcType=VARCHAR}, + organName = #{organname,jdbcType=VARCHAR}, + organTypeCode = #{organtypecode,jdbcType=VARCHAR}, + organTypeName = #{organtypename,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussUserProfitMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserProfitMapper.xml new file mode 100644 index 0000000..592968e --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserProfitMapper.xml @@ -0,0 +1,319 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, userId, parentId, roleCode, teamTransFlow, ownTransFlow, directTransFlow, indirectTransFlow, + totalProfitAmt, directProfitAmt, indirectProfitAmt, otherProfitAmt, t2ProfitAmt, + t3ProfitAmt, dividProfitAmt, areaFlow, areaProfitAmt, createTime, profitDate, remarks, + levelCode, profitMonth, transNum, ownTransNum + + + + delete from tb_pluss_user_profit + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_user_profit (id, userId, parentId, + roleCode, teamTransFlow, ownTransFlow, + directTransFlow, indirectTransFlow, totalProfitAmt, + directProfitAmt, indirectProfitAmt, otherProfitAmt, + t2ProfitAmt, t3ProfitAmt, dividProfitAmt, + areaFlow, areaProfitAmt, createTime, + profitDate, remarks, levelCode, + profitMonth, transNum, ownTransNum + ) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{parentid,jdbcType=INTEGER}, + #{rolecode,jdbcType=VARCHAR}, #{teamtransflow,jdbcType=DECIMAL}, #{owntransflow,jdbcType=DECIMAL}, + #{directtransflow,jdbcType=DECIMAL}, #{indirecttransflow,jdbcType=DECIMAL}, #{totalprofitamt,jdbcType=DECIMAL}, + #{directprofitamt,jdbcType=DECIMAL}, #{indirectprofitamt,jdbcType=DECIMAL}, #{otherprofitamt,jdbcType=DECIMAL}, + #{t2profitamt,jdbcType=DECIMAL}, #{t3profitamt,jdbcType=DECIMAL}, #{dividprofitamt,jdbcType=DECIMAL}, + #{areaflow,jdbcType=DECIMAL}, #{areaprofitamt,jdbcType=DECIMAL}, #{createtime,jdbcType=TIMESTAMP}, + #{profitdate,jdbcType=DATE}, #{remarks,jdbcType=VARCHAR}, #{levelcode,jdbcType=VARCHAR}, + #{profitmonth,jdbcType=VARCHAR}, #{transnum,jdbcType=INTEGER}, #{owntransnum,jdbcType=INTEGER} + ) + + + insert into tb_pluss_user_profit + + + id, + + + userId, + + + parentId, + + + roleCode, + + + teamTransFlow, + + + ownTransFlow, + + + directTransFlow, + + + indirectTransFlow, + + + totalProfitAmt, + + + directProfitAmt, + + + indirectProfitAmt, + + + otherProfitAmt, + + + t2ProfitAmt, + + + t3ProfitAmt, + + + dividProfitAmt, + + + areaFlow, + + + areaProfitAmt, + + + createTime, + + + profitDate, + + + remarks, + + + levelCode, + + + profitMonth, + + + transNum, + + + ownTransNum, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{parentid,jdbcType=INTEGER}, + + + #{rolecode,jdbcType=VARCHAR}, + + + #{teamtransflow,jdbcType=DECIMAL}, + + + #{owntransflow,jdbcType=DECIMAL}, + + + #{directtransflow,jdbcType=DECIMAL}, + + + #{indirecttransflow,jdbcType=DECIMAL}, + + + #{totalprofitamt,jdbcType=DECIMAL}, + + + #{directprofitamt,jdbcType=DECIMAL}, + + + #{indirectprofitamt,jdbcType=DECIMAL}, + + + #{otherprofitamt,jdbcType=DECIMAL}, + + + #{t2profitamt,jdbcType=DECIMAL}, + + + #{t3profitamt,jdbcType=DECIMAL}, + + + #{dividprofitamt,jdbcType=DECIMAL}, + + + #{areaflow,jdbcType=DECIMAL}, + + + #{areaprofitamt,jdbcType=DECIMAL}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{profitdate,jdbcType=DATE}, + + + #{remarks,jdbcType=VARCHAR}, + + + #{levelcode,jdbcType=VARCHAR}, + + + #{profitmonth,jdbcType=VARCHAR}, + + + #{transnum,jdbcType=INTEGER}, + + + #{owntransnum,jdbcType=INTEGER}, + + + + + update tb_pluss_user_profit + + + userId = #{userid,jdbcType=INTEGER}, + + + parentId = #{parentid,jdbcType=INTEGER}, + + + roleCode = #{rolecode,jdbcType=VARCHAR}, + + + teamTransFlow = #{teamtransflow,jdbcType=DECIMAL}, + + + ownTransFlow = #{owntransflow,jdbcType=DECIMAL}, + + + directTransFlow = #{directtransflow,jdbcType=DECIMAL}, + + + indirectTransFlow = #{indirecttransflow,jdbcType=DECIMAL}, + + + totalProfitAmt = #{totalprofitamt,jdbcType=DECIMAL}, + + + directProfitAmt = #{directprofitamt,jdbcType=DECIMAL}, + + + indirectProfitAmt = #{indirectprofitamt,jdbcType=DECIMAL}, + + + otherProfitAmt = #{otherprofitamt,jdbcType=DECIMAL}, + + + t2ProfitAmt = #{t2profitamt,jdbcType=DECIMAL}, + + + t3ProfitAmt = #{t3profitamt,jdbcType=DECIMAL}, + + + dividProfitAmt = #{dividprofitamt,jdbcType=DECIMAL}, + + + areaFlow = #{areaflow,jdbcType=DECIMAL}, + + + areaProfitAmt = #{areaprofitamt,jdbcType=DECIMAL}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + profitDate = #{profitdate,jdbcType=DATE}, + + + remarks = #{remarks,jdbcType=VARCHAR}, + + + levelCode = #{levelcode,jdbcType=VARCHAR}, + + + profitMonth = #{profitmonth,jdbcType=VARCHAR}, + + + transNum = #{transnum,jdbcType=INTEGER}, + + + ownTransNum = #{owntransnum,jdbcType=INTEGER}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_user_profit + set userId = #{userid,jdbcType=INTEGER}, + parentId = #{parentid,jdbcType=INTEGER}, + roleCode = #{rolecode,jdbcType=VARCHAR}, + teamTransFlow = #{teamtransflow,jdbcType=DECIMAL}, + ownTransFlow = #{owntransflow,jdbcType=DECIMAL}, + directTransFlow = #{directtransflow,jdbcType=DECIMAL}, + indirectTransFlow = #{indirecttransflow,jdbcType=DECIMAL}, + totalProfitAmt = #{totalprofitamt,jdbcType=DECIMAL}, + directProfitAmt = #{directprofitamt,jdbcType=DECIMAL}, + indirectProfitAmt = #{indirectprofitamt,jdbcType=DECIMAL}, + otherProfitAmt = #{otherprofitamt,jdbcType=DECIMAL}, + t2ProfitAmt = #{t2profitamt,jdbcType=DECIMAL}, + t3ProfitAmt = #{t3profitamt,jdbcType=DECIMAL}, + dividProfitAmt = #{dividprofitamt,jdbcType=DECIMAL}, + areaFlow = #{areaflow,jdbcType=DECIMAL}, + areaProfitAmt = #{areaprofitamt,jdbcType=DECIMAL}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + profitDate = #{profitdate,jdbcType=DATE}, + remarks = #{remarks,jdbcType=VARCHAR}, + levelCode = #{levelcode,jdbcType=VARCHAR}, + profitMonth = #{profitmonth,jdbcType=VARCHAR}, + transNum = #{transnum,jdbcType=INTEGER}, + ownTransNum = #{owntransnum,jdbcType=INTEGER} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussUserPromotionMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserPromotionMapper.xml new file mode 100644 index 0000000..f1ecd3b --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserPromotionMapper.xml @@ -0,0 +1,398 @@ + + + + + + + + + + + + + + user_id, type_code, current_fee, parent_user_id, is_extend, create_time, update_time + + + + delete from tb_pluss_user_promotion + where user_id = #{userId,jdbcType=INTEGER} + + + insert into tb_pluss_user_promotion (user_id, type_code, current_fee, + parent_user_id, is_extend, create_time, + update_time) + values (#{userId,jdbcType=INTEGER}, #{typeCode,jdbcType=VARCHAR}, #{currentFee,jdbcType=DECIMAL}, + #{parentUserId,jdbcType=VARCHAR}, #{isExtend,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, + #{updateTime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_user_promotion + + + user_id, + + + type_code, + + + current_fee, + + + parent_user_id, + + + is_extend, + + + create_time, + + + update_time, + + + + + #{userId,jdbcType=INTEGER}, + + + #{typeCode,jdbcType=VARCHAR}, + + + #{currentFee,jdbcType=DECIMAL}, + + + #{parentUserId,jdbcType=VARCHAR}, + + + #{isExtend,jdbcType=VARCHAR}, + + + #{createTime,jdbcType=TIMESTAMP}, + + + #{updateTime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_user_promotion + + + type_code = #{typeCode,jdbcType=VARCHAR}, + + + current_fee = #{currentFee,jdbcType=DECIMAL}, + + + parent_user_id = #{parentUserId,jdbcType=VARCHAR}, + + + is_extend = #{isExtend,jdbcType=VARCHAR}, + + + create_time = #{createTime,jdbcType=TIMESTAMP}, + + + update_time = #{updateTime,jdbcType=TIMESTAMP}, + + + where user_id = #{userId,jdbcType=INTEGER} + + + update tb_pluss_user_promotion + set type_code = #{typeCode,jdbcType=VARCHAR}, + current_fee = #{currentFee,jdbcType=DECIMAL}, + parent_user_id = #{parentUserId,jdbcType=VARCHAR}, + is_extend = #{isExtend,jdbcType=VARCHAR}, + create_time = #{createTime,jdbcType=TIMESTAMP}, + update_time = #{updateTime,jdbcType=TIMESTAMP} + where user_id = #{userId,jdbcType=INTEGER} + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussUserPushIdMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserPushIdMapper.xml new file mode 100644 index 0000000..559f438 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserPushIdMapper.xml @@ -0,0 +1,93 @@ + + + + + + + + + + + + id, userId, getuiClientId, createTime, updateTime + + + + delete from tb_pluss_user_push_id + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_user_push_id (id, userId, getuiClientId, + createTime, updateTime) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{getuiclientid,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_user_push_id + + + id, + + + userId, + + + getuiClientId, + + + createTime, + + + updateTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{getuiclientid,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_user_push_id + + + userId = #{userid,jdbcType=INTEGER}, + + + getuiClientId = #{getuiclientid,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_user_push_id + set userId = #{userid,jdbcType=INTEGER}, + getuiClientId = #{getuiclientid,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussUserRewardFlowMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserRewardFlowMapper.xml new file mode 100644 index 0000000..9edc132 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserRewardFlowMapper.xml @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + id, userId, parentId, t2Flow, t3Flow, dividFlow, areaFlow, createTime, createDate, + orderNumber, status, createMonth + + + + delete from tb_pluss_user_reward_flow + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_user_reward_flow (id, userId, parentId, + t2Flow, t3Flow, dividFlow, + areaFlow, createTime, createDate, + orderNumber, status, createMonth + ) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{parentid,jdbcType=INTEGER}, + #{t2flow,jdbcType=DECIMAL}, #{t3flow,jdbcType=DECIMAL}, #{dividflow,jdbcType=DECIMAL}, + #{areaflow,jdbcType=DECIMAL}, #{createtime,jdbcType=TIMESTAMP}, #{createdate,jdbcType=DATE}, + #{ordernumber,jdbcType=VARCHAR}, #{status,jdbcType=INTEGER}, #{createmonth,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_user_reward_flow + + + id, + + + userId, + + + parentId, + + + t2Flow, + + + t3Flow, + + + dividFlow, + + + areaFlow, + + + createTime, + + + createDate, + + + orderNumber, + + + status, + + + createMonth, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{parentid,jdbcType=INTEGER}, + + + #{t2flow,jdbcType=DECIMAL}, + + + #{t3flow,jdbcType=DECIMAL}, + + + #{dividflow,jdbcType=DECIMAL}, + + + #{areaflow,jdbcType=DECIMAL}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{createdate,jdbcType=DATE}, + + + #{ordernumber,jdbcType=VARCHAR}, + + + #{status,jdbcType=INTEGER}, + + + #{createmonth,jdbcType=VARCHAR}, + + + + + update tb_pluss_user_reward_flow + + + userId = #{userid,jdbcType=INTEGER}, + + + parentId = #{parentid,jdbcType=INTEGER}, + + + t2Flow = #{t2flow,jdbcType=DECIMAL}, + + + t3Flow = #{t3flow,jdbcType=DECIMAL}, + + + dividFlow = #{dividflow,jdbcType=DECIMAL}, + + + areaFlow = #{areaflow,jdbcType=DECIMAL}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + createDate = #{createdate,jdbcType=DATE}, + + + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=INTEGER}, + + + createMonth = #{createmonth,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_user_reward_flow + set userId = #{userid,jdbcType=INTEGER}, + parentId = #{parentid,jdbcType=INTEGER}, + t2Flow = #{t2flow,jdbcType=DECIMAL}, + t3Flow = #{t3flow,jdbcType=DECIMAL}, + dividFlow = #{dividflow,jdbcType=DECIMAL}, + areaFlow = #{areaflow,jdbcType=DECIMAL}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + createDate = #{createdate,jdbcType=DATE}, + orderNumber = #{ordernumber,jdbcType=VARCHAR}, + status = #{status,jdbcType=INTEGER}, + createMonth = #{createmonth,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussUserRewardInfoMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserRewardInfoMapper.xml new file mode 100644 index 0000000..c0f0673 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserRewardInfoMapper.xml @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + + id, userId, phone, areaLevel, areaNo, areaName, status, reId, rName, createTime + + + + delete from tb_pluss_user_reward_info + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_user_reward_info (id, userId, phone, + areaLevel, areaNo, areaName, + status, reId, rName, + createTime) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{phone,jdbcType=VARCHAR}, + #{arealevel,jdbcType=INTEGER}, #{areano,jdbcType=VARCHAR}, #{areaname,jdbcType=VARCHAR}, + #{status,jdbcType=INTEGER}, #{reid,jdbcType=INTEGER}, #{rname,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}) + + + insert into tb_pluss_user_reward_info + + + id, + + + userId, + + + phone, + + + areaLevel, + + + areaNo, + + + areaName, + + + status, + + + reId, + + + rName, + + + createTime, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{phone,jdbcType=VARCHAR}, + + + #{arealevel,jdbcType=INTEGER}, + + + #{areano,jdbcType=VARCHAR}, + + + #{areaname,jdbcType=VARCHAR}, + + + #{status,jdbcType=INTEGER}, + + + #{reid,jdbcType=INTEGER}, + + + #{rname,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_user_reward_info + + + userId = #{userid,jdbcType=INTEGER}, + + + phone = #{phone,jdbcType=VARCHAR}, + + + areaLevel = #{arealevel,jdbcType=INTEGER}, + + + areaNo = #{areano,jdbcType=VARCHAR}, + + + areaName = #{areaname,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=INTEGER}, + + + reId = #{reid,jdbcType=INTEGER}, + + + rName = #{rname,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_user_reward_info + set userId = #{userid,jdbcType=INTEGER}, + phone = #{phone,jdbcType=VARCHAR}, + areaLevel = #{arealevel,jdbcType=INTEGER}, + areaNo = #{areano,jdbcType=VARCHAR}, + areaName = #{areaname,jdbcType=VARCHAR}, + status = #{status,jdbcType=INTEGER}, + reId = #{reid,jdbcType=INTEGER}, + rName = #{rname,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussUserRoleMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserRoleMapper.xml new file mode 100644 index 0000000..8c8e7e9 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserRoleMapper.xml @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + id, roleName, roleCode, createTime, validFlag, validTransAmt, validTransNum, minNum, + openTime, protectDayNum + + + + delete from tb_pluss_user_role + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_user_role (id, roleName, roleCode, + createTime, validFlag, validTransAmt, + validTransNum, minNum, openTime, + protectDayNum) + values (#{id,jdbcType=INTEGER}, #{rolename,jdbcType=VARCHAR}, #{rolecode,jdbcType=VARCHAR}, + #{createtime,jdbcType=TIMESTAMP}, #{validflag,jdbcType=INTEGER}, #{validtransamt,jdbcType=DECIMAL}, + #{validtransnum,jdbcType=INTEGER}, #{minnum,jdbcType=INTEGER}, #{opentime,jdbcType=TIMESTAMP}, + #{protectdaynum,jdbcType=INTEGER}) + + + insert into tb_pluss_user_role + + + id, + + + roleName, + + + roleCode, + + + createTime, + + + validFlag, + + + validTransAmt, + + + validTransNum, + + + minNum, + + + openTime, + + + protectDayNum, + + + + + #{id,jdbcType=INTEGER}, + + + #{rolename,jdbcType=VARCHAR}, + + + #{rolecode,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{validflag,jdbcType=INTEGER}, + + + #{validtransamt,jdbcType=DECIMAL}, + + + #{validtransnum,jdbcType=INTEGER}, + + + #{minnum,jdbcType=INTEGER}, + + + #{opentime,jdbcType=TIMESTAMP}, + + + #{protectdaynum,jdbcType=INTEGER}, + + + + + update tb_pluss_user_role + + + roleName = #{rolename,jdbcType=VARCHAR}, + + + roleCode = #{rolecode,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + validFlag = #{validflag,jdbcType=INTEGER}, + + + validTransAmt = #{validtransamt,jdbcType=DECIMAL}, + + + validTransNum = #{validtransnum,jdbcType=INTEGER}, + + + minNum = #{minnum,jdbcType=INTEGER}, + + + openTime = #{opentime,jdbcType=TIMESTAMP}, + + + protectDayNum = #{protectdaynum,jdbcType=INTEGER}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_user_role + set roleName = #{rolename,jdbcType=VARCHAR}, + roleCode = #{rolecode,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + validFlag = #{validflag,jdbcType=INTEGER}, + validTransAmt = #{validtransamt,jdbcType=DECIMAL}, + validTransNum = #{validtransnum,jdbcType=INTEGER}, + minNum = #{minnum,jdbcType=INTEGER}, + openTime = #{opentime,jdbcType=TIMESTAMP}, + protectDayNum = #{protectdaynum,jdbcType=INTEGER} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussUserTaskMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserTaskMapper.xml new file mode 100644 index 0000000..fcdde44 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserTaskMapper.xml @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + + + id, userId, taskCode, status, type, arg0, arg1, arg2, arg3, createTime, updateTime + + + extension + + + + delete from tb_pluss_user_task + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_user_task (id, userId, taskCode, + status, type, arg0, + arg1, arg2, arg3, createTime, + updateTime, extension) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{taskcode,jdbcType=VARCHAR}, + #{status,jdbcType=VARCHAR}, #{type,jdbcType=VARCHAR}, #{arg0,jdbcType=VARCHAR}, + #{arg1,jdbcType=VARCHAR}, #{arg2,jdbcType=VARCHAR}, #{arg3,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, + #{updatetime,jdbcType=TIMESTAMP}, #{extension,jdbcType=LONGVARCHAR}) + + + insert into tb_pluss_user_task + + + id, + + + userId, + + + taskCode, + + + status, + + + type, + + + arg0, + + + arg1, + + + arg2, + + + arg3, + + + createTime, + + + updateTime, + + + extension, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{taskcode,jdbcType=VARCHAR}, + + + #{status,jdbcType=VARCHAR}, + + + #{type,jdbcType=VARCHAR}, + + + #{arg0,jdbcType=VARCHAR}, + + + #{arg1,jdbcType=VARCHAR}, + + + #{arg2,jdbcType=VARCHAR}, + + + #{arg3,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{updatetime,jdbcType=TIMESTAMP}, + + + #{extension,jdbcType=LONGVARCHAR}, + + + + + update tb_pluss_user_task + + + userId = #{userid,jdbcType=INTEGER}, + + + taskCode = #{taskcode,jdbcType=VARCHAR}, + + + status = #{status,jdbcType=VARCHAR}, + + + type = #{type,jdbcType=VARCHAR}, + + + arg0 = #{arg0,jdbcType=VARCHAR}, + + + arg1 = #{arg1,jdbcType=VARCHAR}, + + + arg2 = #{arg2,jdbcType=VARCHAR}, + + + arg3 = #{arg3,jdbcType=VARCHAR}, + + + createTime = #{createtime,jdbcType=TIMESTAMP}, + + + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + + + extension = #{extension,jdbcType=LONGVARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_user_task + set userId = #{userid,jdbcType=INTEGER}, + taskCode = #{taskcode,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + type = #{type,jdbcType=VARCHAR}, + arg0 = #{arg0,jdbcType=VARCHAR}, + arg1 = #{arg1,jdbcType=VARCHAR}, + arg2 = #{arg2,jdbcType=VARCHAR}, + arg3 = #{arg3,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP}, + extension = #{extension,jdbcType=LONGVARCHAR} + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_user_task + set userId = #{userid,jdbcType=INTEGER}, + taskCode = #{taskcode,jdbcType=VARCHAR}, + status = #{status,jdbcType=VARCHAR}, + type = #{type,jdbcType=VARCHAR}, + arg0 = #{arg0,jdbcType=VARCHAR}, + arg1 = #{arg1,jdbcType=VARCHAR}, + arg2 = #{arg2,jdbcType=VARCHAR}, + arg3 = #{arg3,jdbcType=VARCHAR}, + createTime = #{createtime,jdbcType=TIMESTAMP}, + updateTime = #{updatetime,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussUserTypeMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserTypeMapper.xml new file mode 100644 index 0000000..ca49a35 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserTypeMapper.xml @@ -0,0 +1,106 @@ + + + + + + + + + + + + + type_code, type_name, current_fee, low_fee, create_time, update_time + + + + delete from tb_pluss_user_type + where type_code = #{typeCode,jdbcType=VARCHAR} + + + insert into tb_pluss_user_type (type_code, type_name, current_fee, + low_fee, create_time, update_time + ) + values (#{typeCode,jdbcType=VARCHAR}, #{typeName,jdbcType=VARCHAR}, #{currentFee,jdbcType=DECIMAL}, + #{lowFee,jdbcType=DECIMAL}, #{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP} + ) + + + insert into tb_pluss_user_type + + + type_code, + + + type_name, + + + current_fee, + + + low_fee, + + + create_time, + + + update_time, + + + + + #{typeCode,jdbcType=VARCHAR}, + + + #{typeName,jdbcType=VARCHAR}, + + + #{currentFee,jdbcType=DECIMAL}, + + + #{lowFee,jdbcType=DECIMAL}, + + + #{createTime,jdbcType=TIMESTAMP}, + + + #{updateTime,jdbcType=TIMESTAMP}, + + + + + update tb_pluss_user_type + + + type_name = #{typeName,jdbcType=VARCHAR}, + + + current_fee = #{currentFee,jdbcType=DECIMAL}, + + + low_fee = #{lowFee,jdbcType=DECIMAL}, + + + create_time = #{createTime,jdbcType=TIMESTAMP}, + + + update_time = #{updateTime,jdbcType=TIMESTAMP}, + + + where type_code = #{typeCode,jdbcType=VARCHAR} + + + update tb_pluss_user_type + set type_name = #{typeName,jdbcType=VARCHAR}, + current_fee = #{currentFee,jdbcType=DECIMAL}, + low_fee = #{lowFee,jdbcType=DECIMAL}, + create_time = #{createTime,jdbcType=TIMESTAMP}, + update_time = #{updateTime,jdbcType=TIMESTAMP} + where type_code = #{typeCode,jdbcType=VARCHAR} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussUserVoiceMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserVoiceMapper.xml new file mode 100644 index 0000000..f68f480 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussUserVoiceMapper.xml @@ -0,0 +1,142 @@ + + + + + + + + + + + + + + + + id, userId, paySuccess, payCancel, memberCharge, memberConsume, deliveryOrder, storeOrder, + urge + + + + delete from tb_pluss_user_voice + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_user_voice (id, userId, paySuccess, + payCancel, memberCharge, memberConsume, + deliveryOrder, storeOrder, urge + ) + values (#{id,jdbcType=INTEGER}, #{userid,jdbcType=INTEGER}, #{paysuccess,jdbcType=VARCHAR}, + #{paycancel,jdbcType=VARCHAR}, #{membercharge,jdbcType=VARCHAR}, #{memberconsume,jdbcType=VARCHAR}, + #{deliveryorder,jdbcType=VARCHAR}, #{storeorder,jdbcType=VARCHAR}, #{urge,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_user_voice + + + id, + + + userId, + + + paySuccess, + + + payCancel, + + + memberCharge, + + + memberConsume, + + + deliveryOrder, + + + storeOrder, + + + urge, + + + + + #{id,jdbcType=INTEGER}, + + + #{userid,jdbcType=INTEGER}, + + + #{paysuccess,jdbcType=VARCHAR}, + + + #{paycancel,jdbcType=VARCHAR}, + + + #{membercharge,jdbcType=VARCHAR}, + + + #{memberconsume,jdbcType=VARCHAR}, + + + #{deliveryorder,jdbcType=VARCHAR}, + + + #{storeorder,jdbcType=VARCHAR}, + + + #{urge,jdbcType=VARCHAR}, + + + + + update tb_pluss_user_voice + + + userId = #{userid,jdbcType=INTEGER}, + + + paySuccess = #{paysuccess,jdbcType=VARCHAR}, + + + payCancel = #{paycancel,jdbcType=VARCHAR}, + + + memberCharge = #{membercharge,jdbcType=VARCHAR}, + + + memberConsume = #{memberconsume,jdbcType=VARCHAR}, + + + deliveryOrder = #{deliveryorder,jdbcType=VARCHAR}, + + + storeOrder = #{storeorder,jdbcType=VARCHAR}, + + + urge = #{urge,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_user_voice + set userId = #{userid,jdbcType=INTEGER}, + paySuccess = #{paysuccess,jdbcType=VARCHAR}, + payCancel = #{paycancel,jdbcType=VARCHAR}, + memberCharge = #{membercharge,jdbcType=VARCHAR}, + memberConsume = #{memberconsume,jdbcType=VARCHAR}, + deliveryOrder = #{deliveryorder,jdbcType=VARCHAR}, + storeOrder = #{storeorder,jdbcType=VARCHAR}, + urge = #{urge,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussWxBankCodeMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussWxBankCodeMapper.xml new file mode 100644 index 0000000..a4678b9 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussWxBankCodeMapper.xml @@ -0,0 +1,82 @@ + + + + + + + + + + + id, bankName, bankCode, remark + + + + delete from tb_pluss_wx_bank_code + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_wx_bank_code (id, bankName, bankCode, + remark) + values (#{id,jdbcType=INTEGER}, #{bankname,jdbcType=VARCHAR}, #{bankcode,jdbcType=VARCHAR}, + #{remark,jdbcType=VARCHAR}) + + + insert into tb_pluss_wx_bank_code + + + id, + + + bankName, + + + bankCode, + + + remark, + + + + + #{id,jdbcType=INTEGER}, + + + #{bankname,jdbcType=VARCHAR}, + + + #{bankcode,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + + + update tb_pluss_wx_bank_code + + + bankName = #{bankname,jdbcType=VARCHAR}, + + + bankCode = #{bankcode,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_wx_bank_code + set bankName = #{bankname,jdbcType=VARCHAR}, + bankCode = #{bankcode,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file diff --git a/newadmin/dao-api/src/main/resources/mapper/TbPlussWxCityInfoMapper.xml b/newadmin/dao-api/src/main/resources/mapper/TbPlussWxCityInfoMapper.xml new file mode 100644 index 0000000..2c02999 --- /dev/null +++ b/newadmin/dao-api/src/main/resources/mapper/TbPlussWxCityInfoMapper.xml @@ -0,0 +1,71 @@ + + + + + + + + + + id, cityCode, cityName + + + + delete from tb_pluss_wx_city_info + where id = #{id,jdbcType=INTEGER} + + + insert into tb_pluss_wx_city_info (id, cityCode, cityName + ) + values (#{id,jdbcType=INTEGER}, #{citycode,jdbcType=VARCHAR}, #{cityname,jdbcType=VARCHAR} + ) + + + insert into tb_pluss_wx_city_info + + + id, + + + cityCode, + + + cityName, + + + + + #{id,jdbcType=INTEGER}, + + + #{citycode,jdbcType=VARCHAR}, + + + #{cityname,jdbcType=VARCHAR}, + + + + + update tb_pluss_wx_city_info + + + cityCode = #{citycode,jdbcType=VARCHAR}, + + + cityName = #{cityname,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + update tb_pluss_wx_city_info + set cityCode = #{citycode,jdbcType=VARCHAR}, + cityName = #{cityname,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + + \ No newline at end of file