mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-04 16:16:35 +08:00
上传模型类
This commit is contained in:
23
Yi.Framework/Yi.Framework.Model/Models/spu_detail.cs
Normal file
23
Yi.Framework/Yi.Framework.Model/Models/spu_detail.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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 spu_detail : baseModel<int>
|
||||
{
|
||||
[Comment("描述")]
|
||||
public string description { get; set; }
|
||||
[Comment("通用规格参数数据")]
|
||||
public string generic_spec { get; set; }
|
||||
[Comment("特有规格参数及可选值信息,json格式")]
|
||||
public string special_spec { get; set; }
|
||||
[Comment("包装清单")]
|
||||
public string packing_list { get; set; }
|
||||
[Comment("售后服务")]
|
||||
public string after_service { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user