代码
create table t_systemprofile(
FSystemprofileid
bigint not null, --系统参数表id--
FCategory varchar (30) not null, --类别--
FKey varchar (30) not null, --类别下的表示符号--
FValue nvarchar (255) null, --对应的值--
FDesc nvarchar (255) null, --描述--
FUid varchar (40) not null, --系统用户id--

constraint [pk_t_systemprofile] primary key nonclustered
(
FUid
asc,
FSystemprofileid
asc
)
)

 

 

系统参数表可以用来对产品的一些系统性的信息进行描述,比如是否已经付费、版本号等等。

相关文章:

  • 2022-12-23
  • 2021-11-23
  • 2022-12-23
  • 2021-10-23
  • 2021-11-22
  • 2022-02-15
  • 2021-05-07
  • 2021-05-03
猜你喜欢
  • 2022-01-04
  • 2021-08-08
  • 2021-12-20
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案