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.
26 lines
590 B
26 lines
590 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.CommonTables
|
|
{
|
|
public class UpdateCommonTableDto
|
|
{
|
|
public Guid CommonTableId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 对照值
|
|
/// </summary>
|
|
public string DataCode { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
public string DisplayName { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// 通用字段对照类别
|
|
/// </summary>
|
|
public string CommonTableTypeId { get; set; }
|
|
}
|
|
}
|