All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.xinjump.easyexcel.example.biz.service.impl.UserServiceImpl Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package com.xinjump.easyexcel.example.biz.service.impl;

import com.alibaba.fastjson.JSON;
import com.xinjump.easyexcel.example.biz.entity.UserEntity;
import com.xinjump.easyexcel.example.biz.service.UserService;
import org.springframework.stereotype.Service;

import java.util.List;

/**
 * @author xinjump
 * @version 1.1
 * @date 2020/12/16 14:55
 * @see com.xinjump.easyexcel.example.biz.service.impl
 */
@Service
public class UserServiceImpl implements UserService {

    @Override
    public void query() {
        System.err.println("123456 - UserServiceImpl");
    }

    @Override
    public boolean saveOrUpdateBatch(List userEntityList) {
        System.err.println("userEntityList: " + JSON.toJSONString(userEntityList));
        return true;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy