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.

21 lines
504 B

1 month ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Report.Entity
  7. {
  8. /// <summary>
  9. /// 报表父子关系
  10. /// 父表:HRSumSummary
  11. /// 子表:HRSummaryContent
  12. /// 关联字段:summaryTitle
  13. /// </summary>
  14. public class HRSummaryContent
  15. {
  16. public string summaryTitle { get; set; }
  17. public string summaryContent { get; set; }
  18. public int displayOrder { get; set; }
  19. }
  20. }