对接老ops

This commit is contained in:
18942506660
2023-11-07 17:07:32 +08:00
parent cd92e0b6d6
commit ec755cb92e
14 changed files with 199 additions and 7 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Domain.Options
{
/// <summary>
/// 老ops对接
/// </summary>
public class OpsOptions
{
public string Url { get; set; }
public string UserName { get; set; }
public string PassWord { get; set; }
}
}