DestroySituationController.java
482 Bytes
package com.bsth.controller.realcontrol.summary;
import com.bsth.controller.BaseController;
import com.bsth.data.summary.entity.DestroySituation;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* Created by panzhao on 2017/11/1.
*/
@RestController
@RequestMapping("/summary/destroy_detail")
public class DestroySituationController extends BaseController<DestroySituation, Long> {
}