package com.changhong.epc.tenant.service.bill.impl; import com.changhong.epc.tenant.mapper.tenant.bill.BillInfoMapper; import com.changhong.epc.tenant.service.bill.BillInfoService; import org.springframework.stereotype.Service; import javax.annotation.Resource; /** * 票据信息 */ @Service public class BillInfoServiceImpl implements BillInfoService { @Resource private BillInfoMapper billInfoMapper; @Override public int updateStart(String orderCode) { return billInfoMapper.updateBillState(orderCode); } }