You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
尹诚诚 23cc811a9e 默认返回404,防止url错误 2 years ago
..
controllers 默认返回404,防止url错误 2 years ago
models 添加短链接功能 2 years ago
views 添加短链接功能 2 years ago
readme.txt 添加短链接功能 2 years ago

readme.txt

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

生成短链接方便顾问在IM上发收款链接、收集客人链接等
--ycc 2023-02-03


-- DROP TABLE InfoManager.dbo.infoShortLinks;

CREATE TABLE InfoManager.dbo.infoShortLinks (
	isl_id int IDENTITY(0,1) NOT NULL,
	isl_link varchar(512) COLLATE Chinese_PRC_CI_AS NULL,
	isl_type varchar(125) COLLATE Chinese_PRC_CI_AS NULL,
	isl_URL nvarchar(2048) COLLATE Chinese_PRC_CI_AS NULL,
	isl_datetime smalldatetime DEFAULT getdate() NULL
);
 CREATE NONCLUSTERED INDEX infoShortLinks_isl_link_IDX ON dbo.infoShortLinks (  isl_link ASC  )