zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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.changhong.epc.count.service.format.impl;
 
import com.changhong.epc.bean.count.format.FormInfo;
import com.changhong.epc.count.service.count.model.CountResultLast;
import org.springframework.stereotype.Service;
 
/**
 * 添加主数据缺失错误信息
 */
@Service("formatMasterMsgInfoCount")
public class FormatMasterMsgInfoCount extends FormatRuleMsgInfoCount {
 
 
    @Override
    public void formatResult(FormInfo formInfo, CountResultLast countResultLast) {
        super.formatResult(formInfo, countResultLast);
 
        // 添加错误信息
        formInfo.setErrSystemMsgs(countResultLast.getIParamIter().getErrSystemMsgs());
 
    }
 
}