123456789101112131415161718192021222324252627282930 |
- package com.steerinfo.route.controller;
- import com.steerinfo.dil.util.BaseRESTfulController;
- import com.steerinfo.route.service.ITmstruckReceiptResultChildService;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- /**
- * TmstruckReceiptResultChild RESTful接口:
- * @author generator
- * @version 1.0-SNAPSHORT 2021-09-06 07:38
- * 类描述
- * 修订历史:
- * 日期:2021-09-06
- * 作者:generator
- * 参考:
- * 描述:TmstruckReceiptResultChild RESTful接口
- * @see null
- * @Copyright 湖南视拓信息技术股份有限公司. All rights reserved.
- */
- @RestController
- @RequestMapping("/${api.version}/tmstruckreceiptresultchilds")
- public class TmstruckReceiptResultChildController extends BaseRESTfulController {
- @Autowired
- ITmstruckReceiptResultChildService tmstruckReceiptResultChildService;
- }
|