ProjectPointRecord.cs 608 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using wispro.sp.entity;
  7. namespace wispro.sp.share
  8. {
  9. public class ProjectContents
  10. {
  11. public ProjectContentRecord ProjectContentRecord { get; set; }
  12. public List<ViewProjectWorkContent> ProjectWorkContents { get; set; }
  13. }
  14. public class ViewProjectWorkContent : ProjectWorkContent
  15. {
  16. public ModifyState modifyState { get; set; }
  17. }
  18. public enum ModifyState
  19. {
  20. UnChanged,
  21. Modified,
  22. New,
  23. Deleted
  24. }
  25. }