Commit 36ac31d1 by xiezhigang

包装性质

parent e2866cbe
...@@ -232,6 +232,10 @@ namespace PetaPoco.Custom.ProductData ...@@ -232,6 +232,10 @@ namespace PetaPoco.Custom.ProductData
/// 是否成品 /// 是否成品
/// </summary> /// </summary>
public int isFinish { get; set; } public int isFinish { get; set; }
/// <summary>
/// 包装性质
/// </summary>
public string packageNature { get; set; }
/// <summary> /// <summary>
/// 品牌 /// 品牌
......
...@@ -100,7 +100,7 @@ namespace DbConn ...@@ -100,7 +100,7 @@ namespace DbConn
{ {
strSql += ",s_color as color,s_size as size,s_size1 as size1,s_size2 as size2,s_price as price,s_currency as currency" strSql += ",s_color as color,s_size as size,s_size1 as size1,s_size2 as size2,s_price as price,s_currency as currency"
+ ",s_weight as weight,s_unit as unit,s_packing_weight as packingWeight,s_product_size as productSize,s_packing_size as packingSize,s_packing_name as packingName,s_packing_req packingReq,s_packing_skuid packingSkuid" + ",s_weight as weight,s_unit as unit,s_packing_weight as packingWeight,s_product_size as productSize,s_packing_size as packingSize,s_packing_name as packingName,s_packing_req packingReq,s_packing_skuid packingSkuid"
+ ",s_packing_price as packingPrice,s_charger_spec as chargerSpec,s_product_character as productCharacter,s_cpeihuo as cPeiHuo,s_epeihuo as ePeiHuo,s_cbaoguan as cBaoGuan,s_ebaoguan as eBaoGuan,s_hscode as hsCode"; + ",s_packing_price as packingPrice,s_charger_spec as chargerSpec,s_product_character as productCharacter,s_cpeihuo as cPeiHuo,s_epeihuo as ePeiHuo,s_cbaoguan as cBaoGuan,s_ebaoguan as eBaoGuan,s_hscode as hsCode,s_package_nature packageNature";
} }
//基础其他信息 //基础其他信息
if (isContent || Array.IndexOf(content, "1") != -1 || Array.IndexOf(content, "1-3") != -1) if (isContent || Array.IndexOf(content, "1") != -1 || Array.IndexOf(content, "1-3") != -1)
......
...@@ -2826,6 +2826,13 @@ namespace DbConn ...@@ -2826,6 +2826,13 @@ namespace DbConn
[Description("用途")] [Description("用途")]
[Column("s_skupurpose")] public string s_skupurpose { get; set; } [Column("s_skupurpose")] public string s_skupurpose { get; set; }
///<summary>
///包装性质
///</summary>
[Description("包装性质")]
[Column("s_package_nature")] public string s_package_nature { get; set; }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment