using System; using System.Collections.Generic; namespace ParkingLotEntity.DB; public partial class CgCtrPicture { public long Id { get; set; } /// /// 项目id /// public long ProjectId { get; set; } /// /// 图片分组 /// public long GroupId { get; set; } /// /// 图片标识名称 /// public string? Type { get; set; } public string? Name { get; set; } /// /// 路径 /// public string? Path { get; set; } /// /// 图片名称 /// public string? ImgName { get; set; } /// /// 宽 /// public string? Width { get; set; } /// /// 高 /// public string? Height { get; set; } }