public int InsertReceiveFromTcatFTP(LogisticsTcatSod model)
 {
     model.Replace4MySQL();
     StringBuilder InsertSql = new StringBuilder("");
     InsertSql.AppendFormat(@" INSERT INTO logistics_tcat_sod (delivery_number,order_id,station_name,delivery_status_time,customer_id,status_id,
                            status_note,specification,create_date) values('{0}','{1}','{2}','{3}','{4}','{5}','{6}','{7}','{8}'); ",
                              model.delivery_number, model.order_id, model.station_name, model.delivery_status_time, model.customer_id, 
                              model.status_id,model.status_note,model.specification ,DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
     return _accessMySql.execCommand(InsertSql.ToString());
 }