Files
wcs/WCS.Model/ApiModel/StoreInfo/AddShelfInfoRequest.cs
hehaibing-1996 e89b64ea3a !提交代码
2024-04-15 18:43:28 +08:00

14 lines
305 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using WCS.Model.ApiModel.User;
namespace WCS.Model.ApiModel.StoreInfo
{
public class AddShelfInfoRequest<T> : RequestBase
{
public T ShelfInfo { get; set; }
public AddOrUpdate AddOrUpdate { get; set; }
}
}