123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 |
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Text;
- namespace CoreEntity.Entity
- {
- [Serializable]
- public class Mem_Product
- {
- private string _productCode;
- private int _productObject;
- private string _productName;
- private string _productDesc;
- private string _manufacturer;
- private string _productType;
- private int _purchasePrice;
- private int _amount;
- private int _productState;
- private int _isDelete;
- private DateTime _creationDate;
- private DateTime _lastModified;
- private string _productText;
- private int _marketPrice;
- private int _marketIng;
- private DataTable _dt;
- private string _levelId;
- public Mem_Product(){}
- public string LevelId {
- get { return _levelId; }
- set { _levelId = value; }
- }
- public DataTable dt {
- get { return _dt; }
- set { _dt = value; }
- }
- public string ProductCode {
- get { return _productCode; }
- set { _productCode=value; }
- }
- public int MarketPrice {
- get { return _marketPrice; }
- set { _marketPrice=value; }
- }
- public int MarketIng {
- get { return _marketIng; }
- set { _marketIng = value; }
- }
- public int ProductObject {
- get { return _productObject; }
- set { _productObject = value; }
- }
- public DateTime LastModified {
- get { return _lastModified; }
- set { _lastModified = value; }
- }
- public DateTime CreationDate {
- get { return _creationDate; }
- set { _creationDate = value; }
- }
- public int Amount
- {
- get { return _amount; }
- set { _amount = value; }
- }
- public int State
- {
- get { return _productState; }
- set { _productState = value; }
- }
- public int IsDelete
- {
- get { return _isDelete; }
- set { _isDelete = value; }
- }
- public int PurchasePrice
- {
- get { return _purchasePrice; }
- set { _purchasePrice = value; }
- }
- public string ProductName
- {
- get { return _productName; }
- set { _productName = value; }
- }
- public string ProductDesc
- {
- get { return _productDesc; }
- set { _productDesc = value; }
- }
- public string Manufacturer
- {
- get { return _manufacturer; }
- set { _manufacturer = value; }
- }
- public string ProductType
- {
- get { return _productType; }
- set { _productType = value; }
- }
- public string ProductText
- {
- get { return _productText; }
- set { _productText = value; }
- }
- }
- /// <summary>
- /// 商品类目
- /// </summary>
- public class mem_productType {
- private string _typeId;
- private string _typeName;
- private int _productCn;
- public mem_productType(){}
- public string TypeId {
- get { return _typeId; }
- set { _typeId = value; }
- }
- public string TypeName {
- get { return _typeName; }
- set { _typeName = value; }
- }
- public int ProductCn {
- get { return _productCn; }
- set { _productCn = value; }
- }
- }
- public class mem_userLevel {
- private string _value;
- private string _parentValue;
- private string _label;
- public mem_userLevel() { }
- public string value
- {
- get { return _value; }
- set { _value = value; }
- }
- public string parentValue
- {
- get { return _parentValue; }
- set { _parentValue = value; }
- }
- public string label
- {
- get{ return _label; }
- set { _label = value; }
- }
- }
- public class mem_productPic {
- /* private string _picID;
- private string _productCode;
- private string _picUrl;
- */
- private string _url;
- private string _uid;
- private string _name;
- private string _thumbUrl;
- public mem_productPic() { }
- public string uid {
- get { return _uid; }
- set { _uid = value; }
- }
- public string name
- {
- get { return _name; }
- set { _name = value; }
- }
- public string thumbUrl
- {
- get { return _thumbUrl; }
- set { _thumbUrl = value; }
- }
- public string url {
- get { return _url; }
- set { _url = value; }
- }
- /*
- public string PicId {
- get { return _picID; }
- set { _picID = value; }
- }
- public string ProductCode {
- get { return _productCode; }
- set { _productCode = value; }
- }
- public string PicUrl {
- get { return _picUrl; }
- set { _picUrl = value; }
- }*/
-
- }
- }
|