TmstruckReceiptResultChildController.java 964 B

123456789101112131415161718192021222324252627282930
  1. package com.steerinfo.route.controller;
  2. import com.steerinfo.dil.util.BaseRESTfulController;
  3. import com.steerinfo.route.service.ITmstruckReceiptResultChildService;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.web.bind.annotation.RequestMapping;
  6. import org.springframework.web.bind.annotation.RestController;
  7. /**
  8. * TmstruckReceiptResultChild RESTful接口:
  9. * @author generator
  10. * @version 1.0-SNAPSHORT 2021-09-06 07:38
  11. * 类描述
  12. * 修订历史:
  13. * 日期:2021-09-06
  14. * 作者:generator
  15. * 参考:
  16. * 描述:TmstruckReceiptResultChild RESTful接口
  17. * @see null
  18. * @Copyright 湖南视拓信息技术股份有限公司. All rights reserved.
  19. */
  20. @RestController
  21. @RequestMapping("/${api.version}/tmstruckreceiptresultchilds")
  22. public class TmstruckReceiptResultChildController extends BaseRESTfulController {
  23. @Autowired
  24. ITmstruckReceiptResultChildService tmstruckReceiptResultChildService;
  25. }