OrgExtService.java 617 Bytes
Newer Older
吴泽佳's avatar
吴泽佳 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
package com.tanpu.feo.feojob.service;

import com.tanpu.feo.feojob.entity.OrgExt;

import java.util.List;

/**
 * 机构扩展信息表Service
 *
 * @author zejia zj wu 2021年05月18日
 * @version 1.0
 **/
public interface OrgExtService {

    /** 
    * @Description: 查找需要 进行 同步的机构 
    * @Param:  
    * @return:  
    * @Author: zejia zj wu
    * @Date: 2021/5/18 
    */
    List<OrgExt> findOrgExtByAyto();

    /** 
    * @Description: 根据ID 修改数据 
    * @Param:  
    * @return:  
    * @Author: zejia zj wu
    * @Date: 2021/5/19
    */
    void updataById(OrgExt orgExt);
}