Sign in

RF / hucai · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • hucai
  • ..
  • bean
  • RowBean.java
  • update
    324e5974
    游杰 authored
    2020-09-21 21:10:31 +0800  
    Browse Code »
RowBean.java 392 Bytes
Edit 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 26
package com.huaheng.tab.bean;

/**
 * Created by youjie on 2020/9/15
 */
public class RowBean {

    private int id;
    private CellBean cell;

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public CellBean getCell() {
        return cell;
    }

    public void setCell(CellBean cell) {
        this.cell = cell;
    }
}