Skip to content
  • This project
    • Loading...
  • Sign in

张云鹏 / uc-engine

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • member-service
  • ..
  • beans
  • Scene.java
  • xianghan@topdraw.cn's avatar
    V1.1.0-future-UserCenter接口转移 · 5ed9739c
    5ed9739c
    xianghan@topdraw.cn authored 2022-01-24 14:04:31 +0800
Scene.java 260 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13
package com.topdraw.weixin.beans;

import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;

@Data
public class Scene {
    @JSONField(name = "scene_id")
    private Long sceneId;

    @JSONField(name = "scene_str")
    private String sceneStr;
}