package com.whyc.service;
|
|
import com.whyc.dto.Response;
|
import com.whyc.mapper.WorksheetMainMapper;
|
import com.whyc.pojo.UserInf;
|
import com.whyc.pojo.WorksheetMain;
|
import org.springframework.stereotype.Service;
|
|
import javax.annotation.Resource;
|
|
/**
|
* @author perryhsu
|
* @date 2022/12/17 22:18
|
*/
|
@Service
|
public class WorksheetMainService {
|
|
@Resource
|
private WorksheetMainMapper mapper;
|
|
public Response alarmFlowSubmit(WorksheetMain main, UserInf user) {
|
//TODO 待处理
|
return null;
|
}
|
}
|