mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-20 00:16:37 +08:00
上传模型类
This commit is contained in:
21
Yi.Framework/Yi.Framework.Model/Models/stock.cs
Normal file
21
Yi.Framework/Yi.Framework.Model/Models/stock.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Yi.Framework.Model.Models
|
||||
{
|
||||
public class stock:baseModel<int>
|
||||
{
|
||||
[Comment("可秒杀库存")]
|
||||
public int seckill_stock { get; set; }
|
||||
[Comment("秒杀总数量")]
|
||||
public int seckill_total { get; set; }
|
||||
[Comment("库存数量")]
|
||||
public int stock_count { get; set; }
|
||||
[Comment("sku")]
|
||||
public sku sku { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user