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
636 B
26 lines
636 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.ColumnReferences
|
|
{
|
|
public class UpdateColumnReferenceDto
|
|
{
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
public string DisplayName { get; set; }
|
|
/// <summary>
|
|
/// 配置参数
|
|
/// </summary>
|
|
[Column("parm_value")]
|
|
[StringLength(1000)]
|
|
public string ParmValue { get; set; }
|
|
|
|
|
|
[Column("display_order")]
|
|
public int DisplayOrder { get; set; }
|
|
}
|
|
}
|