service-common/src/main/java/com/java110/common/smo/impl/MachineAuthInnerServiceSMOImpl.java
@@ -1,10 +1,10 @@
package com.java110.common.smo.impl;
import com.java110.common.dao.IMachineAuthServiceDao;
import com.java110.dto.machineAuth.MachineAuthDto;
import com.java110.intf.common.IMachineAuthInnerServiceSMO;
import com.java110.intf.user.IUserInnerServiceSMO;
import com.java110.po.machineAuth.MachineAuthPo;
import com.java110.utils.util.BeanConvertUtil;
import com.java110.core.base.smo.BaseServiceSMO;
import com.java110.dto.user.UserDto;
@@ -91,7 +91,23 @@
    @Override
    public int queryMachineAuthsCount(@RequestBody MachineAuthDto machineAuthDto) {
        return machineAuthServiceDaoImpl.queryMachineAuthsCount(BeanConvertUtil.beanCovertMap(machineAuthDto));    }
        return machineAuthServiceDaoImpl.queryMachineAuthsCount(BeanConvertUtil.beanCovertMap(machineAuthDto));
    }
    @Override
    public int saveMachineAuth(@RequestBody MachineAuthPo machineAuthPo) {
        return machineAuthServiceDaoImpl.saveMachineAuth(BeanConvertUtil.beanCovertMap(machineAuthPo));
    }
    @Override
    public int updateMachineAuth(@RequestBody MachineAuthPo machineAuthPo) {
        return machineAuthServiceDaoImpl.updateMachineAuthInfoInstance(BeanConvertUtil.beanCovertMap(machineAuthPo));
    }
    @Override
    public int deleteMachineAuth(@RequestBody MachineAuthPo machineAuthPo) {
        return machineAuthServiceDaoImpl.deleteMachineAuth(BeanConvertUtil.beanCovertMap(machineAuthPo));
    }
    public IMachineAuthServiceDao getMachineAuthServiceDaoImpl() {
        return machineAuthServiceDaoImpl;