提交后台
This commit is contained in:
parent
eb8a5d718b
commit
df77eb28c9
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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<String, BigDecimal> 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<CashStatus> getCashMap(String userId, LinkedList<CashStatus> 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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -90,7 +90,7 @@ public class PrinterUtils {
|
|||
//设备名称
|
||||
String devName = "ZF544PG0100001";
|
||||
//行为方式 1:只打印数据 2:只播放信息 3:打印数据并播放信息
|
||||
Integer actWay = 3;
|
||||
Integer actWay = 1;
|
||||
//打印联数
|
||||
int cn = 1;
|
||||
//打印内容
|
||||
|
|
|
|||
|
|
@ -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","请求待接受");
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue