PictureEntity.cs 543 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ivf_tl_Entity.GlobalEntitys
  7. {
  8. public class PictureEntity
  9. {
  10. public long id { get; set; }
  11. public int orderNum { get; set; }
  12. public int developTime { get; set; }
  13. public string imageUrl { get; set; }
  14. public DateTime imageTime { get; set; }
  15. public int pictureLayer { get; set; }
  16. public int totalLayer { get; set; }
  17. }
  18. }