You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPA.KitChen.GroupMeal.Application.Service.Device.PushDto.Goods
- {
- public class GoodsInfoDto
- {
- public string Id { get; set; }
- public string Name { get; set; }
- public string Descritption { get; set; }
- public string ImgUrl { get; set; }
- public int Sort { get; set; }
- public decimal Price { get; set; }
- public string GoodsUintId { get; set; }
- public string GoodsUintName { get; set; }
- public bool IsWeigh { get; set; }
- public string Design { get; set; }
- public string DefaultMate { get; set; }
- public bool IsAttrubute { get; set; }
- public string GoodsTypeId { get; set; }
- public string GoodsTypeName { get; set; }
- }
- }
|