old mode 100644
new mode 100755
| | |
| | | |
| | | import com.java110.common.dao.IMachineAttrServiceDao; |
| | | import com.java110.core.base.smo.BaseServiceSMO; |
| | | import com.java110.core.smo.hardwareAdapation.IMachineAttrInnerServiceSMO; |
| | | import com.java110.core.smo.user.IUserInnerServiceSMO; |
| | | import com.java110.intf.common.IMachineAttrInnerServiceSMO; |
| | | import com.java110.intf.user.IUserInnerServiceSMO; |
| | | import com.java110.dto.PageDto; |
| | | import com.java110.dto.hardwareAdapation.MachineAttrDto; |
| | | import com.java110.dto.machine.MachineAttrDto; |
| | | import com.java110.po.machine.MachineAttrPo; |
| | | import com.java110.utils.util.BeanConvertUtil; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | |
| | | return machineAttrServiceDaoImpl.queryMachineAttrsCount(BeanConvertUtil.beanCovertMap(machineAttrDto)); |
| | | } |
| | | |
| | | @Override |
| | | public int saveMachineAttrs(@RequestBody MachineAttrPo machineAttrPo) { |
| | | return machineAttrServiceDaoImpl.saveMachineAttrs(BeanConvertUtil.beanCovertMap(machineAttrPo)); |
| | | } |
| | | |
| | | public IMachineAttrServiceDao getMachineAttrServiceDaoImpl() { |
| | | return machineAttrServiceDaoImpl; |
| | | } |