32 lines
688 B
C#
32 lines
688 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyCode.Project.Domain.Message.Response.Common
|
|
{
|
|
public class HeadFieldItem
|
|
{
|
|
/// <summary>
|
|
/// 字段Id
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 字段名称
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 时间版本
|
|
/// </summary>
|
|
public DateTime VersionTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 字段排序时间
|
|
/// </summary>
|
|
public DateTime FieldSortTime { get; set; }
|
|
}
|
|
}
|