| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package com.sagacloud.pojos;
- /*
- * Author: Jxing
- * Create Time: 2018/7/13
- */
- public class VenderStatistics {
- private String venderId;
- private int contractCount;
- private int totalCount;
- private int nearlyExpireCount;
- public String getVenderId() {
- return venderId;
- }
- public void setVenderId(String venderId) {
- this.venderId = venderId;
- }
- public int getContractCount() {
- return contractCount;
- }
- public void setContractCount(int contractCount) {
- this.contractCount = contractCount;
- }
- public int getTotalCount() {
- return totalCount;
- }
- public void setTotalCount(int totalCount) {
- this.totalCount = totalCount;
- }
- public int getNearlyExpireCount() {
- return nearlyExpireCount;
- }
- public void setNearlyExpireCount(int nearlyExpireCount) {
- this.nearlyExpireCount = nearlyExpireCount;
- }
- }
|