CLRServiceImpl.java 745 字节
package com.sy.service.impl;

import com.sy.mapper.v_express_billnoMapper;
import com.sy.model.v_express_billno;
import com.sy.service.CLRService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

/**
 * @author zhangfan
 * @web www.sy.com
 * @company 郑州商友科技有限公司
 * @time 2018-11-28 16:47
 */
@Service
public class CLRServiceImpl implements CLRService {


    @Autowired
    private v_express_billnoMapper billnoMapper;
    @Override
    public int save(v_express_billno billno) {
        int row = 0;
        try {
            row = billnoMapper.insert(billno);
        }catch (Exception e){
            e.printStackTrace();
        }
        return row;
    }
}