You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
808 B
31 lines
808 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Shentun.Peis.PlugIns
|
|
{
|
|
public class ChargeRequestForPlugIns
|
|
{
|
|
/// <summary>
|
|
/// 收费申请单号
|
|
/// </summary>
|
|
|
|
public string ChargeRequestNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// HIS收费单号
|
|
/// </summary>
|
|
public string HisChargeNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 0、申请 1-收费,2-退费
|
|
/// </summary>
|
|
public char ChargeRequestFlag { get; set; }
|
|
|
|
public List<ChargeRequestAsbitemForPlugIns> Asbitems = new List<ChargeRequestAsbitemForPlugIns> ();
|
|
}
|
|
}
|