mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-24 18:04:52 +08:00
21 lines
373 B
C#
21 lines
373 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TCM.Manager.Models
|
|
{
|
|
[SugarTable("Jewels")]
|
|
public class JewelsModel
|
|
{
|
|
public long ClientID { get; set; }
|
|
|
|
public decimal JewelCount { get; set; }
|
|
|
|
public int PropType { get; set; }
|
|
|
|
}
|
|
}
|