12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace LYFZ.CloudServerData.Model
- {
- public class ScanProductInfo
- {
-
-
-
- public int ID { get; set; }
-
-
-
- public string EnterpriseID { get; set; }
-
-
-
- public string ProType { get; set; }
-
-
-
- public string ProTypeList { get; set; }
-
-
-
- public string ProNumber { get; set; }
-
-
-
- public string ProName { get; set; }
-
-
-
- public string ProInfo { get; set; }
-
-
-
- public string CreateName { get; set; }
-
-
-
- public DateTime CreateTime { get; set; }
-
-
-
- public string UpdateName { get; set; }
-
-
-
- public DateTime UpdateTime { get; set; }
-
-
-
- public string ImgUrl { get; set; }
-
-
-
- public decimal SellValue { get; set; }
-
-
-
- public decimal PQuantity { get; set; }
- }
- }
|