ab56a9bcf7
SVN-Revision: r240
62 lines
1.7 KiB
C#
62 lines
1.7 KiB
C#
/***********************
|
|
* 说明:单据录入条码模型
|
|
* 创建人:龚宇超
|
|
* 创建日期:2018-04-28
|
|
* 修改人:
|
|
* 修改日期:
|
|
* 修改备注:
|
|
* 版本:1.0.0.0
|
|
***********************/
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Data;
|
|
|
|
namespace Lskj.Model
|
|
{
|
|
public class BillBarCodeModel
|
|
{
|
|
/// <summary>
|
|
/// 商品名称
|
|
/// </summary>
|
|
/// <value>The name of the product.</value>
|
|
public string ProductName { get; set; }
|
|
/// <summary>
|
|
/// 物料规格
|
|
/// </summary>
|
|
/// <value>The spec.</value>
|
|
public string ProductSpec { get; set; }
|
|
/// <summary>
|
|
/// 物料型号
|
|
/// </summary>
|
|
/// <value>The product model.</value>
|
|
public string ProductModel { get; set; }
|
|
/// <summary>
|
|
/// 商品品类
|
|
/// </summary>
|
|
/// <value>The classify.</value>
|
|
public string ProductClassify { get; set; }
|
|
/// <summary>
|
|
/// 商品品牌
|
|
/// </summary>
|
|
/// <value>The productbrand.</value>
|
|
public string ProductBrand { get; set; }
|
|
/// <summary>
|
|
/// 花色
|
|
/// </summary>
|
|
/// <value>The color.</value>
|
|
public string Color { get; set; }
|
|
public BillBarCodeModel(DataRow row)
|
|
{
|
|
this.ProductName = row["productName"] + "";
|
|
this.ProductSpec = row["spec"] + "";
|
|
this.ProductModel = row["model"] + "";
|
|
this.ProductClassify = row["classify"] + "";
|
|
this.ProductBrand = row["Mproductid"] + "";
|
|
this.Color = row["str4"] + "";
|
|
}
|
|
|
|
}
|
|
}
|