审查视图

src/main/java/com/sy/service/GatherInfoService.java 224 字节
1 2
package com.sy.service;
zhangFan authored
3
import com.sy.model.GatherInfo;
4 5 6

public interface GatherInfoService {
zhangFan authored
7
    int save(GatherInfo info);
朱兆平 authored
8 9 10 11 12

    /**
     * 根据过卡进行抬杆指令处理
     */
    void handel(GatherInfo info);
13
}