using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace Shentun.Peis.CustomerOrgGroups
{
public class CustomerOrgGroupDto : AuditedEntityDtoName
{
///
/// 分组名称
///
public string DisplayName { get; set; }
///
/// 价格
///
public decimal Price { get; set; }
///
/// 适用性别
///
public char ForSexId { get; set; }
///
/// 适用婚姻状况
///
public char MaritalStatusId { get; set; }
///
/// 适用年龄下限
///
public short AgeLowerLimit { get; set; }
///
/// 适用年龄上限
///
public short AgeUpperLimit { get; set; }
///
/// 适用职务
///
public string? JobPost { get; set; }
///
/// 适用职称
///
public string? JobTitle { get; set; }
///
/// 备注
///
public string? Remark { get; set; }
///
/// 显示顺序
///
public int DisplayOrder { get; set; }
///
/// 体检次数ID
///
public Guid CustomerOrgRegisterId { get; set; }
///
/// 可增加单位支付金额
///
public decimal CanAddMoney { get; set; }
}
}