huliguo
2025-05-30 925219ebfda2a480df99ca06a13033c78ae8d81f
1
2
3
4
5
6
7
8
9
10
11
package com.ruoyi.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.system.domain.Agreement;
import com.ruoyi.system.pojo.dto.AddAgreementDTO;
 
 
 
public interface AgreementService extends IService<Agreement>  {
    void setAgreement( AddAgreementDTO addAgreementDTO);
}