| 12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.GlobalEntitys
- {
- public class PictureEntity
- {
- public long id { get; set; }
- public int orderNum { get; set; }
- public int developTime { get; set; }
- public string imageUrl { get; set; }
- public DateTime imageTime { get; set; }
- public int pictureLayer { get; set; }
- public int totalLayer { get; set; }
- }
- }
|