12345678910111213141516171819202122232425262728293031323334 |
- package com.bizmatics.service.impl;
- import com.bizmatics.model.PlatformArea;
- import com.bizmatics.persistence.mapper.PlatformAreaMapper;
- import com.bizmatics.service.PlatformAreaService;
- import com.bizmatics.common.mvc.base.AbstractCrudService;
- import org.springframework.stereotype.Service;
- /**
- * <p>
- * 服务实现类
- * </p>
- *
- * @author ya
- * @since 2021-09-29
- */
- @Service
- public class PlatformAreaServiceImpl extends AbstractCrudService<PlatformAreaMapper, PlatformArea> implements PlatformAreaService {
- @Override
- public void platformAreaAdd(PlatformArea platformArea){
- platformArea.setEnable(1);
- this.save(platformArea);
- }
- @Override
- public void platformAreaUpdate(PlatformArea platformArea){
- this.updateById(platformArea);
- }
- public void platformAreaList(){
- }
- }
|