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 Volo.Abp.Domain.Entities;using Volo.Abp.Domain.Entities.Auditing;
namespace Shentun.WebPeis.Models;
/// <summary>
/// 团检单位设置
/// </summary>
public partial class CustomerOrg:AuditedEntity, IHasConcurrencyStamp{ /// <summary>
/// 单位ID
/// </summary>
public Guid CustomerOrgId { get; set; }
/// <summary>
/// 单位名称
/// </summary>
public string CustomerOrgName { get; set; } = null!;
/// <summary>
/// 简称
/// </summary>
public string ShortName { get; set; } = null!;
/// <summary>
/// 父编号
/// </summary>
public Guid? ParentId { get; set; }
/// <summary>
/// 路径编码
/// </summary>
public string PathCode { get; set; } = null!;
/// <summary>
/// 拼音简码
/// </summary>
public string SimpleCode { get; set; } = null!;
/// <summary>
/// 备注
/// </summary>
public string? Remark { get; set; }
/// <summary>
/// 状态
/// </summary>
public char IsActive { get; set; }
/// <summary>
/// 显示顺序
/// </summary>
public int DisplayOrder { get; set; }
public string? ConcurrencyStamp { get; set; }
/// <summary>
/// 体检中心ID
/// </summary>
public Guid MedicalCenterId { get; set; }
public string? CountryOrgCode { get; set; }
public virtual ICollection<CustomerOrgRegister> CustomerOrgRegisters { get; set; } = new List<CustomerOrgRegister>();
public override object?[] GetKeys() { return [CustomerOrgId]; }}
|