基线 SVN r240

SVN-Revision: r240
This commit is contained in:
cyf
2025-02-06 06:46:06 +00:00
commit ab56a9bcf7
5317 changed files with 902274 additions and 0 deletions
+61
View File
@@ -0,0 +1,61 @@
/***********************
* 说明:单据录入条码模型
* 创建人:龚宇超
* 创建日期: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"] + "";
}
}
}