27 lines
466 B
Java
27 lines
466 B
Java
package com.jsl.oa.services;
|
|
|
|
|
|
|
|
import com.jsl.oa.model.vodata.ProjectDailyAddVO;
|
|
import com.jsl.oa.utils.BaseResponse;
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
|
|
|
|
|
/**
|
|
* 项目日报(ProjectDaily)表服务接口
|
|
*
|
|
* @author zrx
|
|
* @since 2024-04-18 11:40:53
|
|
*/
|
|
public interface ProjectDailyService {
|
|
|
|
|
|
BaseResponse addDaily(ProjectDailyAddVO projectDailyAddVO, HttpServletRequest request);
|
|
|
|
BaseResponse getMyDaily(HttpServletRequest request);
|
|
}
|
|
|
|
|