?? owaccountingrequest.java
字號:
// ----------------------------------------------------------------------------
// $Source: /cvs/vas2006/webpro2/webpro_java/src/com/onewaveinc/portalman/webpro/entity/OWAccountingRequest.java,v $
// ----------------------------------------------------------------------------
// Copyright (c) 2002 by Onewave Inc.
// ----------------------------------------------------------------------------
// $Id: OWAccountingRequest.java,v 1.1.1.1 2006/08/01 05:49:33 zhengx Exp $
// ----------------------------------------------------------------------------
// $Log: OWAccountingRequest.java,v $
// Revision 1.1.1.1 2006/08/01 05:49:33 zhengx
// no message
//
// Revision 1.1 2006/06/02 03:33:16 wuyan
// *** empty log message ***
//
// Revision 1.1 2005/12/08 10:37:17 like
// no message
//
// Revision 1.1 2003/07/28 06:31:03 zengc
// no message
//
// ----------------------------------------------------------------------------
package com.onewaveinc.portalman.webpro.entity;
import java.util.Date;
/**
* <p>Title: PortalMAN SDK API Documentation</p>
* <p>Description: OneWave Technologies., Inc. PortalMAN Value-add Management Platform 3rd Software Development Kit</p>
* <p>Copyright: Copyright (c) 2002 </p>
* <p>Company: OneWave Technologies., Inc.</p>
* @author 3rd AAA & ICP Integration Developement Team
* @version 1.5
*/
public class OWAccountingRequest extends OWEntityRoot {
private String vnetLoginName; //Vnet 客戶統一登錄名, String 類型, 最長64位//1——代收費模式;2——Vnet計費模式
private String transactionId; //全局唯一的交易號。
private String icpLoginName; //客戶ICP登錄名, String 類型, 最長64位
private String productInfo; //產品信息, String 類型, 最長64位//付費金額(單位為厘,例如計費1元 payAmount應該是”1000”)//“1” 代表包月 “0” 非包月//產品計費開始使用時間,格式為:“yyyyMMddHHmmss”//產品計費結束使用時間, 格式為:“yyyyMMddHHmmss”
private int accountingType;
private java.util.Date endTime;
private long payAmount;
private java.util.Date startTime;
private long volume; //流量, 單位為KB
public String getVnetLoginName() {
return vnetLoginName;
}
public void setVnetLoginName(String vnetLoginName) {
this.vnetLoginName = vnetLoginName;
}
public void setTransactionId(String transactionId) {
this.transactionId = transactionId;
}
public String getTransactionId() {
return transactionId;
}
public void setIcpLoginName(String icpLoginName) {
this.icpLoginName = icpLoginName;
}
public String getIcpLoginName() {
return icpLoginName;
}
public void setProductInfo(String productInfo) {
this.productInfo = productInfo;
}
public String getProductInfo() {
return productInfo;
}
public void setPayAmount(long payAmount) {
this.payAmount = payAmount;
}
public long getPayAmount() {
return payAmount;
}
public void setAccountingType(int accountingType) {
this.accountingType = accountingType;
}
public int getAccountingType() {
return accountingType;
}
public void setStartTime(java.util.Date startTime) {
this.startTime = startTime;
}
public java.util.Date getStartTime() {
return startTime;
}
public void setEndTime(java.util.Date endTime) {
this.endTime = endTime;
}
public java.util.Date getEndTime() {
return endTime;
}
public void setVolume(long volume) {
this.volume = volume;
}
public long getVolume() {
return volume;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -