package com.fuzamei.dto; /** * @file_name: Condition * @Description: * @author: 刘林杰 * @date: 五月 2018/5/15 13:53 * @version: */ public class Condition { private int status; private String ownEnterprise; private String orderId; private int billId; public int getStatus() { return status; } public void setStatus(int status) { this.status = status; } public String getOwnEnterprise() { return ownEnterprise; } public void setOwnEnterprise(String ownEnterprise) { this.ownEnterprise = ownEnterprise; } public int getBillId() { return billId; } public void setBillId(int billId) { this.billId = billId; } public String getOrderId() { return orderId; } public void setOrderId(String orderId) { this.orderId = orderId; } @Override public String toString() { return "Condition [status=" + status + ", ownEnterprise=" + ownEnterprise + ", orderId=" + orderId + ", billId=" + billId + "]"; } }