using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using ARW.Model.Models.Business.OrderManage.Orders; namespace ARW.Model.Dto.Api.OrderManage.Orders { /// /// 订单店铺对象Api /// /// @author lwh /// @date 2023-09-01 /// public class StoreInfo { public long StoreId { get; set; } public string StoreName { get; set; } public string Remark { get; set; } } }