Skip to content

Commit 8d6ecee

Browse files
committed
update
1 parent 1d265f8 commit 8d6ecee

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 '更新时间',

constant/business_email.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package constant
22

33
const (
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
)

0 commit comments

Comments
 (0)