26 lines
484 B
C#
26 lines
484 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ChouBox.Model.Entities;
|
|
|
|
public partial class Shang
|
|
{
|
|
public uint Id { get; set; }
|
|
|
|
public string Title { get; set; } = null!;
|
|
|
|
public decimal Pro { get; set; }
|
|
|
|
public string? Imgurl { get; set; }
|
|
|
|
public string? Color { get; set; }
|
|
|
|
public uint GoodsId { get; set; }
|
|
|
|
public string? SpecialImgurl { get; set; }
|
|
|
|
public uint Sort { get; set; }
|
|
|
|
public uint? UpdateTime { get; set; }
|
|
}
|