| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace ShopMobile.Model
- {
- public class PT_Pro_Product
- {
- /// <summary>
- /// ID
- /// </summary>
- private int _id;
- public int ID
- {
- get { return _id; }
- set { _id = value; }
- }
- /// <summary>
- /// Category
- /// </summary>
- private int? _category;
- public int? Category
- {
- get { return _category; }
- set { _category = value; }
- }
- /// <summary>
- /// SpBQ
- /// </summary>
- private string _spbq;
- public string SpBQ
- {
- get { return _spbq; }
- set { _spbq = value; }
- }
- /// <summary>
- /// Title
- /// </summary>
- private string _title;
- public string Title
- {
- get { return _title; }
- set { _title = value; }
- }
- /// <summary>
- /// ImgUrl
- /// </summary>
- private string _imgurl;
- public string ImgUrl
- {
- get { return _imgurl; }
- set { _imgurl = value; }
- }
- /// <summary>
- /// ImgUrl1
- /// </summary>
- private string _imgurl1;
- public string ImgUrl1
- {
- get { return _imgurl1; }
- set { _imgurl1 = value; }
- }
- /// <summary>
- /// Price
- /// </summary>
- private decimal? _price;
- public decimal? Price
- {
- get { return _price; }
- set { _price = value; }
- }
- /// <summary>
- /// Points
- /// </summary>
- private decimal? _points;
- public decimal? Points
- {
- get { return _points; }
- set { _points = value; }
- }
- /// <summary>
- /// Brand
- /// </summary>
- private string _brand;
- public string Brand
- {
- get { return _brand; }
- set { _brand = value; }
- }
- /// <summary>
- /// Details
- /// </summary>
- private string _details;
- public string Details
- {
- get { return _details; }
- set { _details = value; }
- }
- /// <summary>
- /// Qty
- /// </summary>
- private int? _qty;
- public int? Qty
- {
- get { return _qty; }
- set { _qty = value; }
- }
- /// <summary>
- /// IsSelf
- /// </summary>
- private int? _isself;
- public int? IsSelf
- {
- get { return _isself; }
- set { _isself = value; }
- }
- /// <summary>
- /// SelfTime
- /// </summary>
- private DateTime? _selftime;
- public DateTime? SelfTime
- {
- get { return _selftime; }
- set { _selftime = value; }
- }
- /// <summary>
- /// Deleted
- /// </summary>
- private int? _deleted;
- public int? Deleted
- {
- get { return _deleted; }
- set { _deleted = value; }
- }
- /// <summary>
- /// DeletedUser
- /// </summary>
- private string _deleteduser;
- public string DeletedUser
- {
- get { return _deleteduser; }
- set { _deleteduser = value; }
- }
- /// <summary>
- /// DeletedTime
- /// </summary>
- private DateTime? _deletedtime;
- public DateTime? DeletedTime
- {
- get { return _deletedtime; }
- set { _deletedtime = value; }
- }
- /// <summary>
- /// CreateUser
- /// </summary>
- private string _createuser;
- public string CreateUser
- {
- get { return _createuser; }
- set { _createuser = value; }
- }
- /// <summary>
- /// CreateTime
- /// </summary>
- private DateTime? _createtime;
- public DateTime? CreateTime
- {
- get { return _createtime; }
- set { _createtime = value; }
- }
- /// <summary>
- /// Status
- /// </summary>
- private int? _status;
- public int? Status
- {
- get { return _status; }
- set { _status = value; }
- }
- /// <summary>
- /// Remark
- /// </summary>
- private string _remark;
- public string Remark
- {
- get { return _remark; }
- set { _remark = value; }
- }
- /// <summary>
- /// Type
- /// </summary>
- private int? _type;
- public int? Type
- {
- get { return _type; }
- set { _type = value; }
- }
- /// <summary>
- /// SpNo
- /// </summary>
- private int? _spNo;
- public int? SpNo
- {
- get { return _spNo; }
- set { _spNo = value; }
- }
- /// <summary>
- /// SPPrice
- /// </summary>
- private decimal? _spPrice;
- public decimal? SPPrice
- {
- get { return _spPrice; }
- set { _spPrice = value; }
- }
- }
- }
|