• This project
    • Loading...
  • Sign in

fastcoding / wdbean

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • wdbean
  • ..
  • bean
  • JsImageBean.java
  • 提交代码,待梳理业务数据并拆解 · 4e060178
    4e060178 Browse Files
    张波 authored 2024-10-15 17:44:21 +0800
JsImageBean.java 387 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25

package com.wd.foundation.bean;

public class JsImageBean {

    private int type;

    private String content;

    public int getType() {
        return type;
    }

    public void setType(int type) {
        this.type = type;
    }

    public String getContent() {
        return content;
    }

    public void setContent(String content) {
        this.content = content;
    }
}