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.
|
|
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 { /// <summary>
/// 分组名称
/// </summary>
public string DisplayName { get; set; } /// <summary>
/// 价格
/// </summary>
public decimal Price { get; set; } /// <summary>
/// 适用性别
/// </summary>
public char ForSexId { get; set; } /// <summary>
/// 适用婚姻状况
/// </summary>
public char MaritalStatusId { get; set; } /// <summary>
/// 适用年龄下限
/// </summary>
public short AgeLowerLimit { get; set; } /// <summary>
/// 适用年龄上限
/// </summary>
public short AgeUpperLimit { get; set; } /// <summary>
/// 适用职务
/// </summary>
public string? JobPost { get; set; } /// <summary>
/// 适用职称
/// </summary>
public string? JobTitle { get; set; } /// <summary>
/// 备注
/// </summary>
public string? Remark { get; set; } /// <summary>
/// 显示顺序
/// </summary>
public int DisplayOrder { get; set; }
/// <summary>
/// 体检次数ID
/// </summary>
public Guid CustomerOrgRegisterId { get; set; }
/// <summary>
/// 可增加单位支付金额
/// </summary>
public decimal CanAddMoney { get; set; } }}
|