lyhzzz 11 months ago
parent
commit
2c300ae2b7

+ 1 - 1
src/main/java/com/fdkankan/agent/entity/AgentNewLog.java

@@ -39,7 +39,7 @@ public class AgentNewLog implements Serializable {
     @TableField("type")
     private Integer type;
     /**
-     * 0 经销商授权,1经销商续费,2官网自购,3平台授权
+     * 0 经销商授权,1经销商续费,2官网自购,3平台授权,4platform购买
      */
     @TableField("give_type")
     private Integer giveType;

+ 1 - 1
src/main/java/com/fdkankan/agent/request/LogListParam.java

@@ -6,7 +6,7 @@ import lombok.Data;
 @Data
 public class LogListParam extends TimeBase {
     private Integer type;      // 0 专业会员,1高级会员,2下载
-    private Integer giveType;  //授权方式 0 经销商授权 ,1经销商续费 ,2 官网自购,3平台授权
+    private Integer giveType;  //授权方式 0 经销商授权 ,1经销商续费 ,2 官网自购,3平台授权,4platform购买
     private Integer agentId;
     private Integer subAgentId;
     private AgentNew agentNew;

+ 1 - 0
src/main/java/com/fdkankan/agent/response/LogListVo.java

@@ -64,6 +64,7 @@ public class LogListVo {
             case 1 :return "经销商续费";
             case 2 :return "官网自购";
             case 3 :return "平台授权";
+            case 4 :return "platform购买";
         }
         return giveTypeStr;
     }