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

胡立强 / VVAS-Weather

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-Weather
  • ..
  • model
  • Rc.java
  • HlQ's avatar
    格式化代码 · cf921cf7
    HlQ committed Aug 04, 2021
    cf921cf7
Rc.java 309 Bytes
RawBlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
package com.viontech.model;

public class Rc {

    private int c;
    private String p;

    public void setC(int c) {
        this.c = c;
    }

    public int getC() {
        return c;
    }

    public void setP(String p) {
        this.p = p;
    }

    public String getP() {
        return p;
    }
}