admin
2020-07-14 eec7e789a87863c25d92c10ad5dfc22ad80c448d
fanli/src/main/java/com/yeshi/fanli/controller/admin/user/cloud/UserCloudAdminController.java
@@ -6,6 +6,7 @@
import javax.annotation.Resource;
import com.yeshi.fanli.entity.accept.AdminAcceptData;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.yeshi.utils.JsonUtil;
@@ -60,15 +61,6 @@
   private UserCloudSendRecordService userCloudSendRecordService;
   @Resource
   private UserCloudManageService userCloudManageService;
   @Resource
   private UserCloudAlipayManager userCloudAlipayManager;
   @Resource
   private GoodsEvaluateService goodsEvaluateService;
   @Resource
   private UserCloudSendContentService userCloudSendContentService;
   
   
@@ -82,7 +74,7 @@
    * @param out
    */
   @RequestMapping(value = "queryOrder")
   public void queryOrder(String callback, Integer pageIndex, Integer pageSize, String key, Integer state, PrintWriter out) {
   public void queryOrder(AdminAcceptData acceptData, String callback, Integer pageIndex, Integer pageSize, String key, Integer state, PrintWriter out) {
      try {
         if (pageIndex == null)
            pageIndex = 1;
@@ -132,7 +124,7 @@
    * @param out
    */
   @RequestMapping(value = "queryCloud")
   public void queryCloud(String callback, Integer pageIndex, Integer pageSize, String key, Integer state, PrintWriter out) {
   public void queryCloud(AdminAcceptData acceptData,String callback, Integer pageIndex, Integer pageSize, String key, Integer state, PrintWriter out) {
      try {
         if (pageIndex == null)
            pageIndex = 1;
@@ -183,7 +175,7 @@
    * @param out
    */
   @RequestMapping(value = "querySendRecord")
   public void querySendRecord(String callback, Integer pageIndex, Integer pageSize, String key, Integer origin, PrintWriter out) {
   public void querySendRecord(AdminAcceptData acceptData,String callback, Integer pageIndex, Integer pageSize, String key, Integer origin, PrintWriter out) {
      try {
         if (pageIndex == null)
            pageIndex = 1;
@@ -231,7 +223,7 @@
    * @param out
    */
   @RequestMapping(value = "getSendContent")
   public void getSendContent(String callback, String pid, PrintWriter out) {
   public void getSendContent(AdminAcceptData acceptData,String callback, String pid, PrintWriter out) {
      try {
         List<UserCloudSendContent> list = userCloudSendContentService.getByPid(pid);
         if (list == null || list.size() == 0) {
@@ -265,7 +257,7 @@
    * @param out
    */
   @RequestMapping(value = "getUserGroups")
   public void getUserGroups(String callback, Long uid, PrintWriter out) {
   public void getUserGroups(AdminAcceptData acceptData,String callback, Long uid, PrintWriter out) {
      try {
         List<UserCloudGroup> list = userCloudGroupService.listByUid(uid);
         if (list == null || list.size() == 0) {
@@ -302,7 +294,7 @@
    * @param out
    */
   @RequestMapping(value = "queryGoodsList")
   public void queryGoodsList(String callback, Integer pageIndex, Integer pageSize, String key, PrintWriter out) {
   public void queryGoodsList(AdminAcceptData acceptData,String callback, Integer pageIndex, Integer pageSize, String key, PrintWriter out) {
      try {
         if (pageIndex == null)
            pageIndex = 1;
@@ -352,7 +344,7 @@
    * @param out
    */
   @RequestMapping(value = "statisticsCloud")
   public void statisticsCloud(String callback, Long uid, PrintWriter out) {
   public void statisticsCloud(AdminAcceptData acceptData,String callback, Long uid, PrintWriter out) {
      try {
         long orderNum = userCloudOrderService.countOrderRecord(uid, 1);
         long recordNum = userCloudSendRecordService.countRecordNum(uid, null);