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.
16 lines
507 B
16 lines
507 B
using System;
|
|
|
|
namespace NFine.Domain.Entity.SystemManage
|
|
{
|
|
public class FormDataActionEntity : IEntity<FormDataActionEntity>
|
|
{
|
|
public string ID { get; set; }
|
|
public string SourceId { get; set; }
|
|
public int? CSortSeq { get; set; }
|
|
public string CCaption { get; set; }
|
|
public string CFiledName { get; set; }
|
|
public string CLogString { get; set; }
|
|
public string CValueBegin { get; set; }
|
|
public string CValueEnd { get; set; }
|
|
}
|
|
}
|