yanghb
2025-01-07 1ea7e38d7d2152012db3f49934e84d164a07d613
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.zzg.system.service.state;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.github.pagehelper.PageInfo;
import com.zzg.common.core.domain.entity.state.StateAgreement;
import com.zzg.common.core.domain.entity.system.SysDictData;
import com.zzg.system.domain.bo.StateAgreementBO;
import com.zzg.system.domain.vo.AgreementDetailVO;
import com.zzg.system.domain.vo.StateAgreementVO;
 
import java.util.List;
import java.util.Map;
 
public interface StateAgreementService extends IService<StateAgreement> {
 
    PageInfo<StateAgreementVO> listDataByCondition(StateAgreementBO request);
 
    List<AgreementDetailVO> listAgreementDetailByHouseId(String householdId);
 
    Map<String, Object> getWordData(String stateHouseholdId, String stateAgreementId);
 
    Boolean updateStateAgreement(List<String> houseId);
}