Commit 794f3375 by weitianhua

fix

parent 49c9da55
...@@ -58,6 +58,11 @@ namespace PetaPoco.Custom.ProductData ...@@ -58,6 +58,11 @@ namespace PetaPoco.Custom.ProductData
/// </summary> /// </summary>
public int s_category_bailun_id { get; set; } public int s_category_bailun_id { get; set; }
///<summary>
///Shopify分类ID
///</summary>
public int s_shopify_cateid { get; set; }
/// <summary> /// <summary>
/// 简易分类ID /// 简易分类ID
/// </summary> /// </summary>
......
...@@ -2283,7 +2283,7 @@ namespace DbConn ...@@ -2283,7 +2283,7 @@ namespace DbConn
[ExplicitColumns] [ExplicitColumns]
public partial class yt_product_base : DbConnDB.Record<yt_product_base> public partial class yt_product_base : DbConnDB.Record<yt_product_base>
{ {
public enum EPT {s_id ,s_main_id ,s_goods_code ,s_product_code ,s_product ,s_sku ,s_ctitle ,s_etitle ,s_ctitle_alias ,s_category_bailun_id ,s_category_bailun_name ,s_category_id ,s_category_name ,s_series ,s_skutype ,s_isfinish ,s_weight ,s_unit ,s_price ,s_currency ,s_main_image ,s_child_image ,s_color ,s_size ,s_size1 ,s_size2 ,s_product_size ,s_packing_size ,s_packing_name ,s_packing_price ,s_packing_weight ,s_packing_req ,s_packing_skuid ,s_charger_spec ,s_product_character ,s_bailun_character ,s_cpeihuo ,s_epeihuo ,s_cbaoguan ,s_ebaoguan ,s_hscode ,s_content ,s_remarks ,s_developtime ,s_createname ,s_createtime ,s_updatename ,s_updatetime ,s_operatetype, s_category_simple, s_product_type, s_uk_customs_code, s_packaging_requirements, s_pskuquin, s_pskudide,s_skumaterialquality, s_skupurpose } public enum EPT {s_id ,s_main_id ,s_goods_code ,s_product_code ,s_product ,s_sku ,s_ctitle ,s_etitle ,s_ctitle_alias ,s_category_bailun_id ,s_category_bailun_name ,s_category_id ,s_category_name ,s_series ,s_skutype ,s_isfinish ,s_weight ,s_unit ,s_price ,s_currency ,s_main_image ,s_child_image ,s_color ,s_size ,s_size1 ,s_size2 ,s_product_size ,s_packing_size ,s_packing_name ,s_packing_price ,s_packing_weight ,s_packing_req ,s_packing_skuid ,s_charger_spec ,s_product_character ,s_bailun_character ,s_cpeihuo ,s_epeihuo ,s_cbaoguan ,s_ebaoguan ,s_hscode ,s_content ,s_remarks ,s_developtime ,s_createname ,s_createtime ,s_updatename ,s_updatetime ,s_operatetype, s_category_simple, s_product_type, s_uk_customs_code, s_packaging_requirements, s_pskuquin, s_pskudide,s_skumaterialquality, s_skupurpose, s_shopify_cateid }
...@@ -2832,7 +2832,11 @@ namespace DbConn ...@@ -2832,7 +2832,11 @@ namespace DbConn
[Description("包装性质")] [Description("包装性质")]
[Column("s_package_nature")] public string s_package_nature { get; set; } [Column("s_package_nature")] public string s_package_nature { get; set; }
///<summary>
///Shopify分类ID
///</summary>
[Description("Shopify分类ID")]
[Column("s_shopify_cateid")] public int s_shopify_cateid { 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