using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace Operater.DTO.System
|
{
|
public class YzSendGoodsRequest
|
{
|
public string YzOid { get; set; }
|
|
public string YzToken { get; set; }
|
}
|
|
public class YzSendGoodsResponse
|
{
|
public bool IsSuccess { get; set; }
|
|
public string ErrorMsg { get; set; }
|
}
|
|
}
|