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
24
25
26
27
28
29
30
31
package com.changhong.epc.tenant.controller.bill;
 
import com.changhong.epc.bean.parsing.BillInfo;
import com.changhong.epc.constter.tenant.TenantUrlConst;
import com.changhong.epc.tenant.service.bill.BillInfoService;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
 
import javax.annotation.Resource;
 
/**
 * 票据信息
 */
@RestController
public class BillInfoController implements TenantUrlConst {
 
    @Resource
    private BillInfoService billInfoService;
 
    /**
     * 修改票据状态
     * @param billInfo
     * @return
     */
    @PostMapping(REST_TENANT_BILLINFO_UPDATE_START)
    public int updateBillStart(@RequestBody BillInfo billInfo){
        return billInfoService.updateStart(billInfo.getOrderCode());
    }
 
}