Skip to content
  • Projects
  • Groups
  • Snippets
  • Help
  • This project
    • Loading...
  • Sign in

朱海 / VVAS-Forward

Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • VVAS-Forward
  • ..
  • model
  • LoadEntity.java
  • 朱海's avatar
    [add]微信小程序转发项目 · b886149f
    朱海 committed Apr 07, 2023
    b886149f
LoadEntity.java 306 Bytes
RawBlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
package com.viontech.model;

import lombok.Data;
import org.springframework.http.HttpMethod;

/**
 * Created with IntelliJ IDEA.
 *
 * @author: zhuhai
 * Date: 2023-04-04
 * Time: 14:26
 */
@Data
public class LoadEntity {

    private HttpMethod method;
    private String url;
    private String param;

}