Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- 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> GoodsAttributeList { get; set; }
- }
- }
|