Bills.java 1.96 KB
package com.sunvote.xpadapp.bean;

/**
 * Created by Elvis on 2017/11/30 11:08
 * Email:Eluis@psunsky.com
 * 版权所有:长沙中天电子设计开发有限公司
 * Description: 人大通用版XPadAppRD重构
 * 对应数据库表格中Bills表格
 */
public class Bills extends VoteState{

    private int billId;//议题ID
    private int billNo;//议题编号
    private int billType;//1 签到 2表决 3 评议  5选举 BillType = 0  BillType = 20 批次表决  BillType = 998 文档查看,不表决  BillType = 999 具有子议案
    private int subType; //billType 为2,3 时: 0快速单项     1单项标题    2单项内容    3多项标题   4多项内容
    private String title; //投票标题
    private String memo; //投票内容
    private String billFile;//议案文件名
    private String billOptions;//评议选项

    public int getBillId() {
        return billId;
    }

    public void setBillId(int billId) {
        this.billId = billId;
    }

    public int getBillNo() {
        return billNo;
    }

    public void setBillNo(int billNo) {
        this.billNo = billNo;
    }

    public int getBillType() {
        return billType;
    }

    public void setBillType(int billType) {
        this.billType = billType;
    }

    public int getSubType() {
        return subType;
    }

    public void setSubType(int subType) {
        this.subType = subType;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getMemo() {
        return memo;
    }

    public void setMemo(String memo) {
        this.memo = memo;
    }

    public String getBillFile() {
        return billFile;
    }

    public void setBillFile(String billFile) {
        this.billFile = billFile;
    }

    public String getBillOptions() {
        return billOptions;
    }

    public void setBillOptions(String billOptions) {
        this.billOptions = billOptions;
    }

}