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 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 GoodsDto
- {
- public string Id { get; set; }
- public string Name { get; set; }
- public string Descritption { get; set; }
- public string ImgUrl { get; set; }
- public int ImgMode { get; set; }
- public int Sort { get; set; }
- public decimal Price { get; set; }
- public string GoodsUintId { 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 Status { get; set; }
- }
- }
|