YNICTE/Model/VMPay.cs

66 lines
2.3 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NP.Model
{
public class VMPay : VMBase
{
public int cmno { get; set; }
public int isgroup { get; set; }
public int ptype { get; set; }
public int isdvr { get; set; }
/// <summary>
/// 0> ptype상품유형
/// 1> itemno상품키
/// 2> itemcount상품수량
/// 3> userno수강생
/// 4> isrebate환급여부
/// 5> fgno환급강좌계약서파일
/// 6> pcno(장바구니번호)
/// </summary>
public String items { get; set; }
public Pay Pay { get; set; }
public PayRfd PayRfd { get; set; }
public PayItem PayItem { get; set; }
public IList<Pay> Paies { get; set; }
public IList<PayItem> PayItems { get; set; }
public IList<PayRfd> PayRfds { get; set; }
public IList<PayItemResult> PayItemResults { get; set; }
public PayDVR PayDVR { get; set; }
/// <summary>
/// 결제PG구성정보
/// </summary>
public String pginfo { get; set; }
public String pginfomobile { get; set; }
public String signkey { get; set; }
public Users User { get; set; }
//public String payitemname { get; set; }
public bool IsMobilePay { get; set; }
public Lect Lect { get; set; }
public bool ispaycert { get; set; }
public bool ispaycart { get; set; }
public bool ispayexam { get; set; }
public Int64 payno { get; set; }
public int absptype { get; set; }
public Int64 rfdno { get; set; }
/// <summary>
/// 배송비
/// </summary>
public int deliveramt { get; set; }
public int exno { get; set; }
public IList<PayCart> PayCarts { get; set; }
public int isexamready { get; set; }
public int userno { get; set; }
public Int64 pplno { get; set; }
public PPLog PPLog { get; set; }
public int iscashrct { get; set; }
public String cashrcthp { get; set; }
public System.Collections.Hashtable payParams { get; set; }
public CM CM { get; set; }
}
}