📄 owaccountingrequest.java
字号:
// ----------------------------------------------------------------------------
// $Source: /cvs/vas2006/webpro2/webpro_java/src/com/onewaveinc/portalman/aaa/v20/soapentity/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:14 wuyan
// *** empty log message ***
//
// Revision 1.1 2005/12/08 10:34:58 like
// no message
//
// Revision 1.1 2003/07/28 06:29:30 zengc
// no message
//
// ----------------------------------------------------------------------------
package com.onewaveinc.portalman.aaa.v20.soapentity;
/**
* <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位
private String icpMode; //1——代收费模式;2——Vnet计费模式
private String transactionId; //全局唯一的交易号。
private String icpLoginName; //客户ICP登录名, String 类型, 最长64位
private String productInfo; //产品信息, String 类型, 最长64位
private String payAmount; //付费金额(单位为厘,例如计费1元 payAmount应该是”1000”)
private String accountingType; //“1” 代表包月 “0” 非包月
private String startTime; //产品计费开始使用时间,格式为:“yyyyMMddHHmmss”
private String endTime; //产品计费结束使用时间, 格式为:“yyyyMMddHHmmss”
private String volume; //流量, 单位为KB
public String getVnetLoginName() {
return vnetLoginName;
}
public void setVnetLoginName(String vnetLoginName) {
this.vnetLoginName = vnetLoginName;
}
public void setIcpMode(String icpMode) {
this.icpMode = icpMode;
}
public String getIcpMode() {
return icpMode;
}
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(String payAmount) {
this.payAmount = payAmount;
}
public String getPayAmount() {
return payAmount;
}
public void setAccountingType(String accountingType) {
this.accountingType = accountingType;
}
public String getAccountingType() {
return accountingType;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
public String getStartTime() {
return startTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public String getEndTime() {
return endTime;
}
public void setVolume(String volume) {
this.volume = volume;
}
public String getVolume() {
return volume;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -