first commit

This commit is contained in:
2026-09-02 16:31:50 +08:00
commit a461727193
911 changed files with 692450 additions and 0 deletions
@@ -0,0 +1,19 @@
namespace JSMachine.WMS.RPC.ErpRPC.Dto.Out.IBSBusinessResult
{
/// <summary>
/// IBS post结果返回
/// </summary>
public class IbsResultDto
{
/// <summary>
/// 返回 true/false 成功或者失败
/// </summary>
public virtual bool State { get; set; }
/// <summary>
/// 成功/失败的内容,可以用在tip显示
/// </summary>
public virtual string Messages { get; set; }
}
}