审查视图

src/main/java/com/sy/service/CommandLogService.java 913 字节
xudada authored
1 2
package com.sy.service;
3 4 5
import com.sy.model.GatherInfo;
import com.sy.model.LAND_BUSINEESTYPE_LIST_INFO;
import com.sy.model.LandBusinessTypeList;
xudada authored
6 7
import com.sy.model.commandLog;
8 9
import java.util.List;
xudada authored
10 11
public interface CommandLogService {
    int insert(commandLog command);
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27

    /**
     * 根据进出场信息写入日志
     * @param info 过卡信息
     * @param check 过卡状态
     * @param reason 抬杆指令内容
     * @param land 流转申请信息
     * @param listInfos 流转单列表
     * @param selfWt 车辆备案重量
     * @param inWt 车辆入场重量
     * @param goodsWt 车辆装载货物重量
     * @param diffVal 进出场差值
     */
    void commandlog(GatherInfo info, boolean check, String reason, LandBusinessTypeList land, List<LAND_BUSINEESTYPE_LIST_INFO> listInfos,
                           Double selfWt,Double inWt,Double goodsWt,Double diffVal
    );
xudada authored
28
}