Exemplo n.º 1
0
 public bool updateShopCollectTime(ShopCollectTime obj)
 {
     if (SqlDbmanager.ExecuteNonQry(SqlExtension.GetUpdateSqlCmd("ShopCollectTime", obj, new List <string> {
         "SCT02", "SCT03", "SCT04"
     }, new List <string> {
         "SCT02=@SCT02", "SCT03=@SCT03", "SCT04=@SCT04"
     })))
     {
         return(true);
     }
     return(false);
 }
Exemplo n.º 2
0
 public bool updateShopCollectDaily(ShopCollectDaily obj)
 {
     if (SqlDbmanager.ExecuteNonQry(SqlExtension.GetUpdateSqlCmd("ShopCollectDaily", obj, new List <string> {
         "SCD02"
     }, new List <string> {
         "SCD02=@SCD02"
     })))
     {
         return(true);
     }
     return(false);
 }