|
|
|
@ -1,27 +1,25 @@
|
|
|
|
|
package ${domain}.module.wsys.mgr;
|
|
|
|
|
|
|
|
|
|
import ${domain}.frame.utils.IDgenerator;
|
|
|
|
|
import ${domain}.frame.utils.Message;
|
|
|
|
|
import ${domain}.frame.base.ErrorType;
|
|
|
|
|
import com.github.pagehelper.PageHelper;
|
|
|
|
|
import com.github.pagehelper.PageInfo;
|
|
|
|
|
import com.github.pagehelper.util.StringUtil;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
import ${domain}.frame.auth.Token;
|
|
|
|
|
import ${domain}.frame.base.ErrorType;
|
|
|
|
|
import ${domain}.frame.utils.IDgenerator;
|
|
|
|
|
import ${domain}.frame.utils.MapperUtil;
|
|
|
|
|
import ${domain}.frame.utils.Message;
|
|
|
|
|
import ${domain}.frame.utils.ValidationUtil;
|
|
|
|
|
import ${domain}.module.wsys.ent.Logtask;
|
|
|
|
|
import ${domain}.module.wsys.mpr.LogtaskMapper;
|
|
|
|
|
import ${domain}.module.wsys.req.LogtaskCreateRequest;
|
|
|
|
|
import ${domain}.module.wsys.req.LogtaskDeleteRequest;
|
|
|
|
|
import ${domain}.module.wsys.req.LogtaskFindRequest;
|
|
|
|
|
import ${domain}.module.wsys.req.LogtaskUpdateRequest;
|
|
|
|
|
import ${domain}.module.wsys.rsp.LogtaskCreateResponse;
|
|
|
|
|
import ${domain}.module.wsys.rsp.LogtaskDeleteResponse;
|
|
|
|
|
import ${domain}.module.wsys.rsp.LogtaskFindResponse;
|
|
|
|
|
import ${domain}.module.wsys.rsp.LogtaskUpdateResponse;
|
|
|
|
|
import com.github.pagehelper.PageHelper;
|
|
|
|
|
import com.github.pagehelper.PageInfo;
|
|
|
|
|
import com.github.pagehelper.util.StringUtil;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* LOGTASK - 任务日志
|
|
|
|
|