护理记录和打卡记录初始化

master
382696293@qq.com 2 years ago
parent 1e9201a8bb
commit 5f0992835b

@ -0,0 +1,63 @@
package com.flossom.system.service;
import com.flossom.common.core.domain.entity.WxNursingLog;
import java.util.List;
/**
* Service
*
* @author flossom
* @date 2024-02-21
*/
public interface IWxNursingLogService {
/**
*
*
* @param id
* @return
*/
public WxNursingLog selectWxNursingLogById(Long id);
/**
*
*
* @param wxNursingLog
* @return
*/
public List<WxNursingLog> selectWxNursingLogList(WxNursingLog wxNursingLog);
/**
*
*
* @param wxNursingLog
* @return
*/
public int insertWxNursingLog(WxNursingLog wxNursingLog);
/**
*
*
* @param wxNursingLog
* @return
*/
public int updateWxNursingLog(WxNursingLog wxNursingLog);
/**
*
*
* @param ids
* @return
*/
public int deleteWxNursingLogByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteWxNursingLogById(Long id);
}
Loading…
Cancel
Save