PhotoPlan.cs 429 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. namespace JiaZhiQuan.Common.Models.VO.UE {
  4. public class PhotoPlan {
  5. public int photoPlanId { get; set; }
  6. public string name { get; set; }
  7. public string brief { get; set; }
  8. public DateTime? createAt { get; set; }
  9. public DateTime? updateAt { get; set; }
  10. //
  11. public List<PhotoPlanDetail> rangeList { get; set; }
  12. }
  13. }