File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ CREATE TABLE `email` (
5656 ` receiver_name` text NOT NULL COMMENT ' 接收者姓名.多个以逗号隔开' ,
5757 ` attachment` VARCHAR ( 1000 ) NOT NULL DEFAULT ' ' COMMENT ' 附件信息' ,
5858 ` remark` VARCHAR ( 100 ) NOT NULL DEFAULT ' ' COMMENT ' 备注信息' ,
59- ` is_ok` TINYINT ( 1 ) UNSIGNED NOT NULL DEFAULT ' 0' COMMENT ' 枚举值 0:发送成功,1:发送失败 ' ,
59+ ` is_ok` TINYINT ( 1 ) UNSIGNED NOT NULL DEFAULT ' 0' COMMENT ' 枚举值 0:发送失败 1:发送成功 ' ,
6060 ` is_deleted` TINYINT ( 1 ) UNSIGNED NOT NULL DEFAULT ' 0' COMMENT ' 枚举值 0:正常,1:删除' ,
6161 ` created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT ' 创建时间' ,
6262 ` updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT ' 更新时间' ,
Original file line number Diff line number Diff line change 11package constant
22
33const (
4- BUSINESS_EMAIL_IS_OK_YES = 0
5- BUSINESS_EMAIL_IS_OK_NO = 1
4+ BUSINESS_EMAIL_IS_OK_YES = 1
5+ BUSINESS_EMAIL_IS_OK_NO = 0
66 BUSINESS_EMAIL_DELIMITER = ","
77)
You can’t perform that action at this time.
0 commit comments