NewGaoKaoApi/PaymentSDK/AliPay/Domain/BudgetLibResult.cs

133 lines
3.5 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// BudgetLibResult Data Structure.
/// </summary>
[Serializable]
public class BudgetLibResult : AopObject
{
/// <summary>
/// 预算阀值,低于这个数据的时候才预警
/// </summary>
[XmlElement("alert_money")]
public string AlertMoney { get; set; }
/// <summary>
/// 预算库预警标记Y-预警N和空位非预警
/// </summary>
[XmlElement("alert_status")]
public string AlertStatus { get; set; }
/// <summary>
/// Y-自动延期 N-非自动延期
/// </summary>
[XmlElement("auto_delay")]
public string AutoDelay { get; set; }
/// <summary>
/// 积分库余额
/// </summary>
[XmlElement("balance")]
public string Balance { get; set; }
/// <summary>
/// 预算库编码
/// </summary>
[XmlElement("budget_code")]
public string BudgetCode { get; set; }
/// <summary>
/// 预算库名称
/// </summary>
[XmlElement("budget_name")]
public string BudgetName { get; set; }
/// <summary>
/// 签约PID
/// </summary>
[XmlElement("contract_pid")]
public string ContractPid { get; set; }
/// <summary>
/// 预算库创建时间
/// </summary>
[XmlElement("create_time")]
public string CreateTime { get; set; }
/// <summary>
/// 是否延期告警 1-告警 0-不告警
/// </summary>
[XmlElement("delay_notice")]
public string DelayNotice { get; set; }
/// <summary>
/// 预算库失效时间
/// </summary>
[XmlElement("end_time")]
public string EndTime { get; set; }
/// <summary>
/// 资金来源
/// </summary>
[XmlElement("fund_source")]
public string FundSource { get; set; }
/// <summary>
/// 预算库备注
/// </summary>
[XmlElement("memo")]
public string Memo { get; set; }
/// <summary>
/// 操作来源F-商户前台,B-后台小二
/// </summary>
[XmlElement("operate_channel")]
public string OperateChannel { get; set; }
/// <summary>
/// 最后操作人
/// </summary>
[XmlElement("operator")]
public string Operator { get; set; }
/// <summary>
/// 积分库id
/// </summary>
[XmlElement("point_lib_id")]
public string PointLibId { get; set; }
/// <summary>
/// 产品码
/// </summary>
[XmlElement("product_code")]
public string ProductCode { get; set; }
/// <summary>
/// 预算库生效时间
/// </summary>
[XmlElement("start_time")]
public string StartTime { get; set; }
/// <summary>
/// 状态,有效 暂停 禁用
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
/// <summary>
/// 预算库状态E有效D暂停F禁用
/// </summary>
[XmlElement("status_code")]
public string StatusCode { get; set; }
/// <summary>
/// 预算总数额:预算库创建+增容-减容
/// </summary>
[XmlElement("total_amount")]
public string TotalAmount { get; set; }
}
}