using System.ComponentModel.DataAnnotations;
namespace StopShopping.Services.Models.Req;
///
/// 新增/修改商品
///
public record EditProductParams
{
///
/// 大于0时修改
///
///
public int? Id { get; set; }
///
/// 商品名称
///
///
[Required]
[MaxLength(100)]
public string? Name { get; set; }
///
/// 简介
///
///
[MaxLength(200)]
public string? Description { get; set; }
///
/// 图片名,修改时传空保持不变
///
///
[MaxLength(50)]
public string? LogoName { get; set; }
///
/// 分类id
///
///
public int CategoryId { get; set; }
///
/// 最小销售单元
///
///
[Required]
[MaxLength(20)]
public string? MinimumUnit { get; set; }
///
/// 单价
///
///
public decimal UnitPrice { get; set; }
///
/// 详情
///
///
public string? Detail { get; set; }
}