- using System;
- using System.Collections.Generic;
- namespace JiaZhiQuan.Common.Models.VO.UE {
- public class PhotoPlan {
- public int photoPlanId { get; set; }
- public string name { get; set; }
- public string brief { get; set; }
- public DateTime? createAt { get; set; }
- public DateTime? updateAt { get; set; }
- //
- public List<PhotoPlanDetail> rangeList { get; set; }
- }
- }
|