|
|
@@ -13,10 +13,10 @@ import org.springframework.web.bind.annotation.GetMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
+import org.apache.commons.logging.Log;
|
|
|
+import org.apache.commons.logging.LogFactory;
|
|
|
|
|
|
import javax.validation.constraints.NotNull;
|
|
|
-import java.time.LocalDate;
|
|
|
-import java.time.LocalDateTime;
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
@@ -26,6 +26,8 @@ import java.util.Map;
|
|
|
@RequestMapping("/wx/groupon")
|
|
|
@Validated
|
|
|
public class WxGrouponController {
|
|
|
+ private final Log logger = LogFactory.getLog(WxGrouponController.class);
|
|
|
+
|
|
|
@Autowired
|
|
|
private LitemallGrouponRulesService rulesService;
|
|
|
@Autowired
|