12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.JavaProductModels
- {
- public partial class KxsShopGoods
- {
- public int Id { get; set; }
- public string SpecList { get; set; }
- public int Sort { get; set; }
- public DateTime? DownTime { get; set; }
- public DateTime? UpTime { get; set; }
- public int GoodsType { get; set; }
- public int StartByCount { get; set; }
- public int LimitCount { get; set; }
- public string ColId { get; set; }
- public int Status { get; set; }
- public string Details { get; set; }
- public string Subtitle { get; set; }
- public decimal Price { get; set; }
- public string GoodsName { get; set; }
- public string PicUrl { get; set; }
- public int Version { get; set; }
- public int DelFlag { get; set; }
- public DateTime? UpdateTime { get; set; }
- public DateTime? CreateTime { get; set; }
- }
- }
|