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
  • QDIIRowBean.java
  • update 可转债
    2dd61e91
    游杰 authored
    2020-09-23 17:13:11 +0800  
    Browse Code »
QDIIRowBean.java 420 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 27 28
package com.huaheng.tab.bean;

import java.util.List;

/**
 * Created by youjie on 2020/9/22
 */
public class QDIIRowBean {

    private int id;
    private QDIIBean cell;

    public int getId() {
        return id;
    }

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

    public QDIIBean getCell() {
        return cell;
    }

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