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; /** *

* 服务实现类 *

* * @author ya * @since 2021-09-29 */ @Service public class PlatformAreaServiceImpl extends AbstractCrudService 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(){ } }