上篇文章已经封装好了类库,现在继续实现功能,在ABPZero框架的基础上来实现一个完整的功能。
Redis缓存编写功能前先在本机安装好Redis,需要用到Redis做缓存,以下分享2个Windows安装Redis的教程
博客园:
我的笔记:?id=a25fc319c5a38285ab7cab2e81857b31&sub=675165188B214E6CA0660B8EEB0A1C35(请记得及时收藏,可能不知哪天就失效了)
Core项目在Core项目下新建Pdd目录,继续在Pdd目录下新建Entities、IRepositories目录,建完如下图所示:
接着在Entities目录下新建PddMall实体类,代码如下:
/// <summary> /// 店铺 /// </summary> public class PddMall : FullAuditedEntity { /// <summary> /// 店铺id /// </summary> public string MallId { get; set; } /// <summary> /// 店铺名称 /// </summary> public string Name { get; set; } /// <summary> /// logo /// </summary> public string Logo { get; set; } /// <summary> /// 描述 /// </summary> public string Desc { get; set; } /// <summary> /// 退款地址 /// </summary> public string RefundAddress { get; set; } /// <summary> /// 销售量 /// </summary> public long Sales { get; set; } /// <summary> /// 商品数量 /// </summary> public int GoodNum { get; set; } }