1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.JavaProductModels
- {
- public partial class KxsShopGoodsPic
- {
- public int Id { get; set; }
- public string Url { get; set; }
- public int Sort { get; set; }
- public int GoodsId { get; set; }
- public int Version { get; set; }
- public int DelFlag { get; set; }
- public DateTime? UpdateTime { get; set; }
- public DateTime? CreateTime { get; set; }
- }
- }
|