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.CommonTables{ public class CommonTableDto : AuditedEntityDtoName { /// <summary>
/// 对照值
/// </summary>
public string DataCode { get; set; } = null!;
/// <summary>
/// 名称
/// </summary>
public string DisplayName { get; set; } = null!;
/// <summary>
/// 通用字段对照类别
/// </summary>
public string CommonTableTypeId { get; set; }
public string SimpleCode { get; set; } = null!;
public int DisplayOrder { get; set; } }}
|