📄 notifyeventargs.cs
字号:
//_totalFee = (decimal?)decimal.Round(_totalFee, 2);
return _totalFee;
}
set
{
if (value < 0.01m || value > 100000000.00m)
{
throw new ArgumentNullException(_totalFee.ToString(), "必须为0.01在100000000.00之间");
}
_totalFee = value;
}
}
public string Seller_Email
{
get
{
if (_sellerEmail == null)
{
throw new ArgumentNullException(_sellerEmail);
} return _sellerEmail;
}
set
{
if ( value != null && value.Length > 100)
throw new ArgumentOutOfRangeException("Invalid value for SellerEmail", value, value.ToString());
_sellerEmail = value;
}
}
public string Seller_Id
{
get
{
if (_sellerId == null)
{
throw new ArgumentNullException(_sellerId);
} return _sellerId;
}
set
{
if ( value != null && value.Length > 30)
throw new ArgumentOutOfRangeException("Invalid value for SellerId", value, value.ToString());
_sellerId = value;
}
}
public string Buyer_Email
{
get
{
if (_buyerEmail == null)
{
throw new ArgumentNullException(_buyerEmail);
} return _buyerEmail;
}
set
{
if ( value != null && value.Length > 100)
throw new ArgumentOutOfRangeException("Invalid value for BuyerEmail", value, value.ToString());
_buyerEmail = value;
}
}
public string Buyer_Id
{
get
{
if (_buyerId == null)
{
throw new ArgumentNullException(_buyerId);
} return _buyerId;
}
set
{
if ( value != null && value.Length > 30)
throw new ArgumentOutOfRangeException("Invalid value for BuyerId", value, value.ToString());
_buyerId = value;
}
}
public string Trade_Status
{
get
{
if (_tradeStatus == null)
{
throw new ArgumentNullException(_tradeStatus);
} return _tradeStatus;
}
set
{
if ( value != null && value.Length > 50)
throw new ArgumentOutOfRangeException("Invalid value for TradeStatus", value, value.ToString());
_tradeStatus = value;
}
}
public string Refund_Status
{
get { return _refundStatus; }
set
{
if ( value != null && value.Length > 50)
throw new ArgumentOutOfRangeException("Invalid value for RefundStatus", value, value.ToString());
_refundStatus = value;
}
}
public string Logistics_Status
{
get { return _logisticsStatus; }
set
{
if ( value != null && value.Length > 50)
throw new ArgumentOutOfRangeException("Invalid value for LogisticsStatus", value, value.ToString());
_logisticsStatus = value;
}
}
public DateTime? Gmt_Create
{
get { return _gmtCreate; }
set { _gmtCreate = value; }
}
public DateTime? Gmt_Payment
{
get { return _gmtPayment; }
set { _gmtPayment = value; }
}
public DateTime? Gmt_SendGoods
{
get { return _gmtSendGoods; }
set { _gmtSendGoods = value; }
}
public DateTime? Gmt_Refund
{
get { return _gmtRefund; }
set { _gmtRefund = value; }
}
public DateTime? Gmt_Close
{
get { return _gmtClose; }
set { _gmtClose = value; }
}
public DateTime? Gmt_Logistics_Modify
{
get { return _gmtLogisticsModify; }
set { _gmtLogisticsModify = value; }
}
//实物交易独有
public decimal? Discount
{
get { return _discount; }
set { _discount = value; }
}
public string Use_Coupon
{
get { return _useCoupon; }
set { _useCoupon = value; }
}
public decimal? Coupon_Discount
{
get { return _couponDiscount; }
set { _couponDiscount = value; }
}
public string Is_Total_Fee_Adjust
{
get { return _isTotalFeeAdjust; }
set { _isTotalFeeAdjust = value; }
}
public string Seller_Actions
{
get { return _sellerActions; }
set
{
if (value != null && value.Length > 150)
throw new ArgumentOutOfRangeException("Invalid value for SellerActions", value, value.ToString());
_sellerActions = value;
}
}
public string Buyer_Actions
{
get { return _buyerActions; }
set
{
if (value != null && value.Length > 150)
throw new ArgumentOutOfRangeException("Invalid value for BuyerActions", value, value.ToString());
_buyerActions = value;
}
}
public string Logistics_Type
{
get { return _logisticsType; }
set
{
if (value != null && value.Length > 50)
throw new ArgumentOutOfRangeException("Invalid value for LogisticsType", value, value.ToString());
_logisticsType = value;
}
}
public decimal? Logistics_Fee
{
get { return _logisticsFee; }
set { _logisticsFee = value; }
}
public string Logistics_Payment
{
get { return _logisticsPayment; }
set
{
if (value != null && value.Length > 50)
throw new ArgumentOutOfRangeException("Invalid value for LogisticsPayment", value, value.ToString());
_logisticsPayment = value;
}
}
public string Receive_Name
{
get { return _receiveName; }
set
{
if (value != null && value.Length > 50)
throw new ArgumentOutOfRangeException("Invalid value for ReceiveName", value, value.ToString());
_receiveName = value;
}
}
public string Receive_Address
{
get { return _receiveAddress; }
set
{
if (value != null && value.Length > 50)
throw new ArgumentOutOfRangeException("Invalid value for ReceiveAddress", value, value.ToString());
_receiveAddress = value;
}
}
public string Receive_Zip
{
get { return _receiveZip; }
set
{
if (value != null && value.Length > 50)
throw new ArgumentOutOfRangeException("Invalid value for ReceiveZip", value, value.ToString());
_receiveZip = value;
}
}
public string Receive_Phone
{
get { return _receivePhone; }
set
{
if (value != null && value.Length > 50)
throw new ArgumentOutOfRangeException("Invalid value for ReceivePhone", value, value.ToString());
_receivePhone = value;
}
}
public string Receive_Mobile
{
get { return _receiveMobile; }
set
{
if (value != null && value.Length > 50)
throw new ArgumentOutOfRangeException("Invalid value for ReceiveMobile", value, value.ToString());
_receiveMobile = value;
}
}
#endregion
}
#endregion
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -