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.
32 lines
781 B
32 lines
781 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.PatientRegisters
|
|
{
|
|
public class UpdatePatientRegisterCustomerOrgGroupDto
|
|
{
|
|
/// <summary>
|
|
/// 人员登记ID
|
|
/// </summary>
|
|
public Guid PatientRegisterId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 单位分组ID
|
|
/// </summary>
|
|
public Guid CustomerOrgGroupId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 支付方式,比如是0.个人支付、1.单位支付、2.免费
|
|
/// </summary>
|
|
public char PayTypeFlag { get; set; } = '0';
|
|
|
|
|
|
/// <summary>
|
|
/// 是否保留加做的组合项目(分组之外的)
|
|
/// </summary>
|
|
public char IsReserveAddAsbitem { get; set; }
|
|
}
|
|
}
|