using BPA.SAAS.Manage.Application.DataBase.Dtos.GoodsAttribute; using BPA.SAAS.Manage.Comm.Enum; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPA.SAAS.Manage.Application.DataBase.Dtos.Goods { public class GoodsInfoBaseView { public string Id { get; set; } public string Code { get; set; } public string Name { get; set; } public decimal Price { get; set; } public string ImgUrl { get; set; } public CommonStatus Status { get; set; } public string GoodsTypeId { get; set; } public string GoodsTypeName { get; set; } public string Remark { get; set; } public string GoodsUintId { get; set; } public string GoodsUintName { get; set; } public bool IsAttrubute { get; set; } public List GoodsAttributeList { get; set; } } }