|
@@ -0,0 +1,24 @@
|
|
|
+package com.fuzamei.web;
|
|
|
+
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.stereotype.Controller;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+
|
|
|
+import com.fuzamei.service.ContractManagementService;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 合同管理模块
|
|
|
+ * @author ylx
|
|
|
+ *
|
|
|
+ */
|
|
|
+@Controller
|
|
|
+@RequestMapping("/contract_management")
|
|
|
+public class ContractManagementAction {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private ContractManagementService contractManagementService;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+}
|