feat: 添加银行功能搭建

This commit is contained in:
陈淳
2024-03-13 18:01:38 +08:00
parent 61d774817f
commit 9dc72ef3ee
5 changed files with 231 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Bbs.Domain.Shared.Enums
{
public enum BankCardStateEnum
{
//闲置
Unused = 0,
//等待中
Wait,
//存储时间已满
Full,
}
}