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

3 weeks ago
  1. using System;
  2. namespace NFine.Domain.Entity.SystemManage
  3. {
  4. public class FormDataActionEntity : IEntity<FormDataActionEntity>
  5. {
  6. public string ID { get; set; }
  7. public string SourceId { get; set; }
  8. public int? CSortSeq { get; set; }
  9. public string CCaption { get; set; }
  10. public string CFiledName { get; set; }
  11. public string CLogString { get; set; }
  12. public string CValueBegin { get; set; }
  13. public string CValueEnd { get; set; }
  14. }
  15. }