tiseza_oss_live/Models/gepgCtrlno.cs

52 lines
1.3 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace OSS.Models
{
public class mymodel
{
public gepgCtrlno gepgCtrlno { get; set; }
}
public class gepgCtrlno
{
public string BillId { get; set; }
public string BillAmt { get; set; }
public string BillEqvAmt { get; set; }
public string BillExprDt { get; set; }
public string PyrId { get; set; }
public string PyrName { get; set; }
public string BillGenDt { get; set; }
public string PyrCellNum { get; set; }
public string Ccy { get; set; }
public string BillDesc { get; set; }
public BillItems BillItems { get; set; }
public systemInfo systemInfo { get; set; }
}
public class BillItems
{
public List<BillItem> BillItem { get; set; }
}
public class BillItem
{
public string BillItemRef { get; set; }
public string BillItemAmt { get; set; }
public string GfsCode { get; set; }
public string BillItemEqvAmt { get; set; }
}
public class systemInfo
{
public string SpSysId { get; set; }
public string SpCode { get; set; }
public string SubSpCode { get; set; }
}
}