作者 tangxvhui

Merge branch 'dev' into test

@@ -41,6 +41,7 @@ func (l *MiniGetArticleLogic) MiniGetArticle(req *types.MiniArticleGetRequest) ( @@ -41,6 +41,7 @@ func (l *MiniGetArticleLogic) MiniGetArticle(req *types.MiniArticleGetRequest) (
41 if articleInfo.CompanyId != req.CompanyId { 41 if articleInfo.CompanyId != req.CompanyId {
42 return nil, xerr.NewErrMsg("没有查看权限") 42 return nil, xerr.NewErrMsg("没有查看权限")
43 } 43 }
  44 + // 检查文章的可查看人
44 if articleInfo.AuthorId != int64(req.UserId) { 45 if articleInfo.AuthorId != int64(req.UserId) {
45 if len(articleInfo.WhoRead) > 0 { 46 if len(articleInfo.WhoRead) > 0 {
46 inWhoRead := false 47 inWhoRead := false
@@ -51,23 +52,25 @@ func (l *MiniGetArticleLogic) MiniGetArticle(req *types.MiniArticleGetRequest) ( @@ -51,23 +52,25 @@ func (l *MiniGetArticleLogic) MiniGetArticle(req *types.MiniArticleGetRequest) (
51 } 52 }
52 if !inWhoRead { 53 if !inWhoRead {
53 // 文章内容不显示 54 // 文章内容不显示
54 - resp = &types.MiniArticleGetResponse{  
55 - Id: articleInfo.Id,  
56 - Title: articleInfo.Title,  
57 - Show: int(domain.ArticleShowDisable),  
58 - }  
59 - return resp, nil 55 + // resp = &types.MiniArticleGetResponse{
  56 + // Id: articleInfo.Id,
  57 + // Title: articleInfo.Title,
  58 + // Show: int(domain.ArticleShowDisable),
  59 + // }
  60 + // return resp, nil
  61 + return nil, xerr.NewErrMsg("没有查看权限")
60 } 62 }
61 } 63 }
62 } 64 }
63 if articleInfo.Show == domain.ArticleShowDisable { 65 if articleInfo.Show == domain.ArticleShowDisable {
64 // 文章内容不显示 66 // 文章内容不显示
65 - resp = &types.MiniArticleGetResponse{  
66 - Id: articleInfo.Id,  
67 - Title: articleInfo.Title,  
68 - Show: int(domain.ArticleShowDisable),  
69 - }  
70 - return resp, nil 67 + // resp = &types.MiniArticleGetResponse{
  68 + // Id: articleInfo.Id,
  69 + // Title: articleInfo.Title,
  70 + // Show: int(domain.ArticleShowDisable),
  71 + // }
  72 + // return resp, nil
  73 + return nil, xerr.NewErrMsg("没有查看权限")
71 } 74 }
72 75
73 queryOption := domain.NewQueryOptions(). 76 queryOption := domain.NewQueryOptions().
  1 +-- public.article definition
  2 +-- Drop table
  3 +-- DROP TABLE public.article;
  4 +CREATE TABLE public.article(
  5 + id bigserial NOT NULL, -- ID
  6 + company_id int8 NULL, -- 公司ID
  7 + created_at int8 NULL, -- 创建时间
  8 + updated_at int8 NULL, -- 更新时间
  9 + deleted_at int8 NULL, -- 删除时间
  10 + is_del int8 NULL, -- 是否删除
  11 + "version" int8 NULL DEFAULT 0, -- 版本
  12 + author_id int8 NULL DEFAULT 0, -- 发布人
  13 + author jsonb NULL DEFAULT '{}' ::jsonb, -- 发布人对象
  14 + title text NULL, -- 文章标题
  15 + images jsonb NULL DEFAULT '[]' ::jsonb, -- 图片
  16 + who_read jsonb NULL DEFAULT '[]' ::jsonb, -- 谁可以看
  17 + who_review jsonb NULL DEFAULT '[]' ::jsonb, -- 评论人
  18 + "location" jsonb NULL DEFAULT '{}' ::jsonb, -- 坐标
  19 + target_user int8 NULL DEFAULT 0, -- 分发方式 0 分发给所有人 1 分发给指定的人
  20 + count_love int8 NULL DEFAULT 0, -- 点赞数量
  21 + count_comment int8 NULL DEFAULT 0, -- 评论数量
  22 + "show" int8 NULL DEFAULT 1, -- 评论的展示状态(1显示、2不显示)
  23 + tags jsonb NULL DEFAULT '[]' ::jsonb, -- 标签
  24 + count_read int8 NULL DEFAULT 0, -- 已读数量
  25 + summary text NULL,
  26 + match_url jsonb NULL DEFAULT '{}' ::jsonb,
  27 + videos jsonb NULL DEFAULT '[]' ::jsonb,
  28 + CONSTRAINT article_pkey PRIMARY KEY (id)
  29 +);
  30 +
  31 +CREATE INDEX article_company_id_idx ON public.article USING btree(company_id);
  32 +
  33 +-- Column comments
  34 +COMMENT ON COLUMN public.article.id IS 'ID';
  35 +
  36 +COMMENT ON COLUMN public.article.company_id IS '公司ID';
  37 +
  38 +COMMENT ON COLUMN public.article.created_at IS '创建时间';
  39 +
  40 +COMMENT ON COLUMN public.article.updated_at IS '更新时间';
  41 +
  42 +COMMENT ON COLUMN public.article.deleted_at IS '删除时间';
  43 +
  44 +COMMENT ON COLUMN public.article.is_del IS '是否删除';
  45 +
  46 +COMMENT ON COLUMN public.article. "version" IS '版本';
  47 +
  48 +COMMENT ON COLUMN public.article.author_id IS '发布人';
  49 +
  50 +COMMENT ON COLUMN public.article.author IS '发布人对象';
  51 +
  52 +COMMENT ON COLUMN public.article.title IS '文章标题';
  53 +
  54 +COMMENT ON COLUMN public.article.images IS '图片';
  55 +
  56 +COMMENT ON COLUMN public.article.who_read IS '谁可以看';
  57 +
  58 +COMMENT ON COLUMN public.article.who_review IS '评论人';
  59 +
  60 +COMMENT ON COLUMN public.article. "location" IS '坐标';
  61 +
  62 +COMMENT ON COLUMN public.article.target_user IS '分发方式 0 分发给所有人 1 分发给指定的人';
  63 +
  64 +COMMENT ON COLUMN public.article.count_love IS '点赞数量';
  65 +
  66 +COMMENT ON COLUMN public.article.count_comment IS '评论数量';
  67 +
  68 +COMMENT ON COLUMN public.article. "show" IS '评论的展示状态(1显示、2不显示)';
  69 +
  70 +COMMENT ON COLUMN public.article.tags IS '标签';
  71 +
  72 +COMMENT ON COLUMN public.article.count_read IS '已读数量';
  73 +
  74 +-- public.article_and_tag definition
  75 +-- Drop table
  76 +-- DROP TABLE public.article_and_tag;
  77 +CREATE TABLE public.article_and_tag(
  78 + id bigserial NOT NULL,
  79 + company_id int8 NULL,
  80 + created_at int8 NULL,
  81 + updated_at int8 NULL,
  82 + article_id int8 NULL,
  83 + tag_id int8 NULL,
  84 + CONSTRAINT article_and_tag_pkey PRIMARY KEY (id)
  85 +);
  86 +
  87 +CREATE INDEX article_and_tag_company_id_idx ON public.article_and_tag USING btree(company_id);
  88 +
  89 +-- public.article_backup definition
  90 +-- Drop table
  91 +-- DROP TABLE public.article_backup;
  92 +CREATE TABLE public.article_backup(
  93 + id bigserial NOT NULL, -- ID
  94 + company_id int8 NULL, -- 公司ID
  95 + created_at int8 NULL, -- 创建时间
  96 + updated_at int8 NULL, -- 更新时间
  97 + deleted_at int8 NULL, -- 删除时间
  98 + is_del int8 NULL, -- 是否删除
  99 + "version" int8 NULL, -- 版本
  100 + "operator" jsonb NULL, -- 操作人
  101 + title text NULL, -- 标题
  102 + "section" jsonb NULL, -- 分段内容
  103 + images jsonb NULL, -- 图片
  104 + "action" text NULL, -- 操作
  105 + who_read jsonb NULL, -- 谁可以看
  106 + who_review jsonb NULL, -- 评论人
  107 + tags jsonb NULL, -- 标签
  108 + target_user int8 NULL, -- 分发方式 0 分发给所有人 1 分发给指定的人
  109 + article_id int8 NULL,
  110 + "location" jsonb NULL,
  111 + match_url jsonb NULL DEFAULT '{}' ::jsonb,
  112 + videos jsonb NULL DEFAULT '[]' ::jsonb,
  113 + CONSTRAINT article_backup_pkey PRIMARY KEY (id)
  114 +);
  115 +
  116 +CREATE INDEX article_backup_company_id_idx ON public.article_backup USING btree(company_id);
  117 +
  118 +-- Column comments
  119 +COMMENT ON COLUMN public.article_backup.id IS 'ID';
  120 +
  121 +COMMENT ON COLUMN public.article_backup.company_id IS '公司ID';
  122 +
  123 +COMMENT ON COLUMN public.article_backup.created_at IS '创建时间';
  124 +
  125 +COMMENT ON COLUMN public.article_backup.updated_at IS '更新时间';
  126 +
  127 +COMMENT ON COLUMN public.article_backup.deleted_at IS '删除时间';
  128 +
  129 +COMMENT ON COLUMN public.article_backup.is_del IS '是否删除';
  130 +
  131 +COMMENT ON COLUMN public.article_backup. "version" IS '版本';
  132 +
  133 +COMMENT ON COLUMN public.article_backup. "operator" IS '操作人';
  134 +
  135 +COMMENT ON COLUMN public.article_backup.title IS '标题';
  136 +
  137 +COMMENT ON COLUMN public.article_backup. "section" IS '分段内容';
  138 +
  139 +COMMENT ON COLUMN public.article_backup.images IS '图片';
  140 +
  141 +COMMENT ON COLUMN public.article_backup. "action" IS '操作';
  142 +
  143 +COMMENT ON COLUMN public.article_backup.who_read IS '谁可以看';
  144 +
  145 +COMMENT ON COLUMN public.article_backup.who_review IS '评论人';
  146 +
  147 +COMMENT ON COLUMN public.article_backup.tags IS '标签';
  148 +
  149 +COMMENT ON COLUMN public.article_backup.target_user IS '分发方式 0 分发给所有人 1 分发给指定的人';
  150 +
  151 +-- public.article_comment definition
  152 +-- Drop table
  153 +-- DROP TABLE public.article_comment;
  154 +CREATE TABLE public.article_comment(
  155 + id bigserial NOT NULL, -- ID
  156 + company_id int8 NULL, -- 公司ID
  157 + created_at int8 NULL, -- 创建时间
  158 + updated_at int8 NULL, -- 更新时间
  159 + is_del int8 NULL, -- 是否删除
  160 + deleted_at int8 NULL, -- 删除时间
  161 + "version" int8 NULL, -- 版本
  162 + pid int8 NULL DEFAULT 0, -- 对哪个评论进行回复
  163 + top_id int8 NULL DEFAULT 0, -- 归属于最上级的哪个评论
  164 + article_id int8 NULL DEFAULT 0, -- 文章id
  165 + section_id int8 NULL DEFAULT 0, -- 文本段落内容id
  166 + section_content text NULL, -- 引用的文章内容文本
  167 + from_user_id int8 NULL DEFAULT 0, -- 谁填写的评论
  168 + from_user jsonb NULL DEFAULT '{}' ::jsonb, -- 谁填写的评论对象
  169 + to_user_id int8 NULL DEFAULT 0, -- 回复谁的评论
  170 + to_user jsonb NULL DEFAULT '{}' ::jsonb, -- 回复谁的评论对象
  171 + "content" text NULL, -- 评论内容
  172 + count_reply int8 NULL DEFAULT 0, -- 回复数量
  173 + count_user_love int8 NULL DEFAULT 0, -- 用户点赞数量
  174 + count_admin_love int8 NULL DEFAULT 0, -- 运营点赞数量
  175 + "show" int8 NULL DEFAULT 1, -- 评论的展示状态(1显示、2不显示)
  176 + at_who jsonb NULL DEFAULT '[]' ::jsonb, -- 填写评论时@的人
  177 + match_url jsonb NULL DEFAULT '{}' ::jsonb, -- 评论内容中出现的url.
  178 + CONSTRAINT article_comment_pkey PRIMARY KEY (id)
  179 +);
  180 +
  181 +CREATE INDEX article_comment_company_id_idx ON public.article_comment USING btree(company_id);
  182 +
  183 +-- Column comments
  184 +COMMENT ON COLUMN public.article_comment.id IS 'ID';
  185 +
  186 +COMMENT ON COLUMN public.article_comment.company_id IS '公司ID';
  187 +
  188 +COMMENT ON COLUMN public.article_comment.created_at IS '创建时间';
  189 +
  190 +COMMENT ON COLUMN public.article_comment.updated_at IS '更新时间';
  191 +
  192 +COMMENT ON COLUMN public.article_comment.is_del IS '是否删除';
  193 +
  194 +COMMENT ON COLUMN public.article_comment.deleted_at IS '删除时间';
  195 +
  196 +COMMENT ON COLUMN public.article_comment. "version" IS '版本';
  197 +
  198 +COMMENT ON COLUMN public.article_comment.pid IS '对哪个评论进行回复';
  199 +
  200 +COMMENT ON COLUMN public.article_comment.top_id IS '归属于最上级的哪个评论';
  201 +
  202 +COMMENT ON COLUMN public.article_comment.article_id IS '文章id';
  203 +
  204 +COMMENT ON COLUMN public.article_comment.section_id IS '文本段落内容id';
  205 +
  206 +COMMENT ON COLUMN public.article_comment.section_content IS '引用的文章内容文本';
  207 +
  208 +COMMENT ON COLUMN public.article_comment.from_user_id IS '谁填写的评论';
  209 +
  210 +COMMENT ON COLUMN public.article_comment.from_user IS '谁填写的评论对象';
  211 +
  212 +COMMENT ON COLUMN public.article_comment.to_user_id IS '回复谁的评论';
  213 +
  214 +COMMENT ON COLUMN public.article_comment.to_user IS '回复谁的评论对象';
  215 +
  216 +COMMENT ON COLUMN public.article_comment. "content" IS '评论内容';
  217 +
  218 +COMMENT ON COLUMN public.article_comment.count_reply IS '回复数量';
  219 +
  220 +COMMENT ON COLUMN public.article_comment.count_user_love IS '用户点赞数量';
  221 +
  222 +COMMENT ON COLUMN public.article_comment.count_admin_love IS '运营点赞数量';
  223 +
  224 +COMMENT ON COLUMN public.article_comment. "show" IS '评论的展示状态(1显示、2不显示)';
  225 +
  226 +COMMENT ON COLUMN public.article_comment.at_who IS '填写评论时@的人';
  227 +
  228 +COMMENT ON COLUMN public.article_comment.match_url IS '评论内容中出现的url.';
  229 +
  230 +-- public.article_draft definition
  231 +-- Drop table
  232 +-- DROP TABLE public.article_draft;
  233 +CREATE TABLE public.article_draft(
  234 + id bigserial NOT NULL, -- ID
  235 + company_id int8 NULL, -- 公司ID
  236 + created_at int8 NULL, -- 创建时间
  237 + updated_at int8 NULL, -- 更新时间
  238 + is_del int8 NULL, -- 是否删除
  239 + deleted_at int8 NULL, -- 删除时间
  240 + "version" int8 NULL, -- 版本
  241 + "template" int8 NULL, -- 填写内容时用的样板0、无 1、演绎式 2、归纳式
  242 + "content" jsonb NULL, -- 文章内容
  243 + author_id int8 NULL, -- 发布人
  244 + title text NULL, -- 文章标题
  245 + images jsonb NULL, -- 图片
  246 + who_read jsonb NULL, -- 谁可以看
  247 + who_review jsonb NULL, -- 评论人
  248 + "location" jsonb NULL, -- 坐标
  249 + match_url jsonb NULL DEFAULT '{}' ::jsonb,
  250 + CONSTRAINT article_draft_pkey PRIMARY KEY (id)
  251 +);
  252 +
  253 +CREATE INDEX article_draft_company_id_idx ON public.article_draft USING btree(company_id);
  254 +
  255 +-- Column comments
  256 +COMMENT ON COLUMN public.article_draft.id IS 'ID';
  257 +
  258 +COMMENT ON COLUMN public.article_draft.company_id IS '公司ID';
  259 +
  260 +COMMENT ON COLUMN public.article_draft.created_at IS '创建时间';
  261 +
  262 +COMMENT ON COLUMN public.article_draft.updated_at IS '更新时间';
  263 +
  264 +COMMENT ON COLUMN public.article_draft.is_del IS '是否删除';
  265 +
  266 +COMMENT ON COLUMN public.article_draft.deleted_at IS '删除时间';
  267 +
  268 +COMMENT ON COLUMN public.article_draft. "version" IS '版本';
  269 +
  270 +COMMENT ON COLUMN public.article_draft. "template" IS '填写内容时用的样板0、无 1、演绎式 2、归纳式';
  271 +
  272 +COMMENT ON COLUMN public.article_draft. "content" IS '文章内容';
  273 +
  274 +COMMENT ON COLUMN public.article_draft.author_id IS '发布人';
  275 +
  276 +COMMENT ON COLUMN public.article_draft.title IS '文章标题';
  277 +
  278 +COMMENT ON COLUMN public.article_draft.images IS '图片';
  279 +
  280 +COMMENT ON COLUMN public.article_draft.who_read IS '谁可以看';
  281 +
  282 +COMMENT ON COLUMN public.article_draft.who_review IS '评论人';
  283 +
  284 +COMMENT ON COLUMN public.article_draft. "location" IS '坐标';
  285 +
  286 +-- public.article_section definition
  287 +-- Drop table
  288 +-- DROP TABLE public.article_section;
  289 +CREATE TABLE public.article_section(
  290 + id bigserial NOT NULL, -- ID
  291 + company_id int8 NULL, -- 公司ID
  292 + created_at int8 NULL, -- 创建时间
  293 + updated_at int8 NULL, -- 更新时间
  294 + deleted_at int8 NULL, -- 删除时间
  295 + is_del int8 NULL, -- 是否删除
  296 + "version" int8 NULL, -- 版本
  297 + article_id int8 NULL, -- 文章id
  298 + "content" text NULL, -- 文本内容
  299 + sort_by int8 NULL, -- 排序
  300 + total_comment int8 NULL, -- 评论的数量
  301 + CONSTRAINT article_section_pkey PRIMARY KEY (id)
  302 +);
  303 +
  304 +CREATE INDEX article_section_article_id_idx ON public.article_section USING btree(article_id);
  305 +
  306 +CREATE INDEX article_section_company_id_idx ON public.article_section USING btree(company_id);
  307 +
  308 +-- Column comments
  309 +COMMENT ON COLUMN public.article_section.id IS 'ID';
  310 +
  311 +COMMENT ON COLUMN public.article_section.company_id IS '公司ID';
  312 +
  313 +COMMENT ON COLUMN public.article_section.created_at IS '创建时间';
  314 +
  315 +COMMENT ON COLUMN public.article_section.updated_at IS '更新时间';
  316 +
  317 +COMMENT ON COLUMN public.article_section.deleted_at IS '删除时间';
  318 +
  319 +COMMENT ON COLUMN public.article_section.is_del IS '是否删除';
  320 +
  321 +COMMENT ON COLUMN public.article_section. "version" IS '版本';
  322 +
  323 +COMMENT ON COLUMN public.article_section.article_id IS '文章id';
  324 +
  325 +COMMENT ON COLUMN public.article_section. "content" IS '文本内容';
  326 +
  327 +COMMENT ON COLUMN public.article_section.sort_by IS '排序';
  328 +
  329 +COMMENT ON COLUMN public.article_section.total_comment IS '评论的数量';
  330 +
  331 +-- public.article_tag definition
  332 +-- Drop table
  333 +-- DROP TABLE public.article_tag;
  334 +CREATE TABLE public.article_tag(
  335 + id bigserial NOT NULL, -- ID
  336 + company_id int8 NULL, -- 公司ID
  337 + created_at int8 NULL, -- 创建时间
  338 + updated_at int8 NULL, -- 更新时间
  339 + deleted_at int8 NULL, -- 删除时间
  340 + is_del int8 NULL DEFAULT 0, -- 是否删除
  341 + "version" int8 NULL, -- 版本
  342 + image jsonb NULL, -- 图片
  343 + "name" text NULL, -- 标签名称
  344 + category text NULL, -- 标签分类
  345 + remark text NULL, -- 备注
  346 + sort_by int8 NULL DEFAULT 0,
  347 + other text NULL,
  348 + CONSTRAINT article_tag_pkey PRIMARY KEY (id)
  349 +);
  350 +
  351 +CREATE INDEX article_tag_company_id_idx ON public.article_tag USING btree(company_id);
  352 +
  353 +-- Column comments
  354 +COMMENT ON COLUMN public.article_tag.id IS 'ID';
  355 +
  356 +COMMENT ON COLUMN public.article_tag.company_id IS '公司ID';
  357 +
  358 +COMMENT ON COLUMN public.article_tag.created_at IS '创建时间';
  359 +
  360 +COMMENT ON COLUMN public.article_tag.updated_at IS '更新时间';
  361 +
  362 +COMMENT ON COLUMN public.article_tag.deleted_at IS '删除时间';
  363 +
  364 +COMMENT ON COLUMN public.article_tag.is_del IS '是否删除';
  365 +
  366 +COMMENT ON COLUMN public.article_tag. "version" IS '版本';
  367 +
  368 +COMMENT ON COLUMN public.article_tag.image IS '图片';
  369 +
  370 +COMMENT ON COLUMN public.article_tag. "name" IS '标签名称';
  371 +
  372 +COMMENT ON COLUMN public.article_tag.category IS '标签分类';
  373 +
  374 +COMMENT ON COLUMN public.article_tag.remark IS '备注';
  375 +
  376 +-- public.company definition
  377 +-- Drop table
  378 +-- DROP TABLE public.company;
  379 +CREATE TABLE public.company(
  380 + id bigserial NOT NULL, -- ID
  381 + "name" text NULL, -- 名称
  382 + code text NULL, -- 编码(搜索使用,4位字母数字)
  383 + logo text NULL, -- 公司LOGO
  384 + created_at int8 NULL, -- 创建时间
  385 + updated_at int8 NULL, -- 更新时间
  386 + deleted_at int8 NULL, -- 删除时间
  387 + "version" int8 NULL, -- 版本
  388 + CONSTRAINT company_pkey PRIMARY KEY (id),
  389 + CONSTRAINT idx_company_code UNIQUE (code)
  390 +);
  391 +
  392 +-- Column comments
  393 +COMMENT ON COLUMN public.company.id IS 'ID';
  394 +
  395 +COMMENT ON COLUMN public.company. "name" IS '名称';
  396 +
  397 +COMMENT ON COLUMN public.company.code IS '编码(搜索使用,4位字母数字)';
  398 +
  399 +COMMENT ON COLUMN public.company.logo IS '公司LOGO';
  400 +
  401 +COMMENT ON COLUMN public.company.created_at IS '创建时间';
  402 +
  403 +COMMENT ON COLUMN public.company.updated_at IS '更新时间';
  404 +
  405 +COMMENT ON COLUMN public.company.deleted_at IS '删除时间';
  406 +
  407 +COMMENT ON COLUMN public.company. "version" IS '版本';
  408 +
  409 +-- public.department definition
  410 +-- Drop table
  411 +-- DROP TABLE public.department;
  412 +CREATE TABLE public.department(
  413 + id bigserial NOT NULL,
  414 + company_id int8 NULL,
  415 + parent_id int8 NULL,
  416 + "name" text NULL,
  417 + created_at int8 NULL,
  418 + updated_at int8 NULL,
  419 + deleted_at int8 NULL,
  420 + "version" int8 NULL,
  421 + is_del int8 NULL,
  422 + CONSTRAINT department_pkey PRIMARY KEY (id)
  423 +);
  424 +
  425 +-- public.message_business definition
  426 +-- Drop table
  427 +-- DROP TABLE public.message_business;
  428 +CREATE TABLE public.message_business(
  429 + id bigserial NOT NULL,
  430 + "type" int8 NULL,
  431 + opt_type int8 NULL,
  432 + company_id int8 NULL,
  433 + user_id int8 NULL,
  434 + recipient_id int8 NULL,
  435 + article_id int8 NULL,
  436 + comment_id int8 NULL,
  437 + comment_parent_id int8 NULL,
  438 + created_at int8 NULL,
  439 + updated_at int8 NULL,
  440 + deleted_at int8 NULL,
  441 + "version" int8 NULL,
  442 + is_del int8 NULL,
  443 + CONSTRAINT message_business_pkey PRIMARY KEY (id)
  444 +);
  445 +
  446 +-- public.message_system definition
  447 +-- Drop table
  448 +-- DROP TABLE public.message_system;
  449 +CREATE TABLE public.message_system(
  450 + id bigserial NOT NULL,
  451 + company_id int8 NULL, -- 公司ID
  452 + recipient_id int8 NULL, -- 接收者ID
  453 + "type" int8 NULL, -- 系统分类(0待定、1业务正常通知、2业务异常通知)
  454 + title text NULL, -- 标题
  455 + "content" text NULL, -- 内容
  456 + created_at int8 NULL, -- 创建时间
  457 + updated_at int8 NULL, -- 更新时间
  458 + deleted_at int8 NULL, -- 删除时间
  459 + "version" int8 NULL, -- 版本
  460 + is_del int8 NULL, -- 是否删除
  461 + CONSTRAINT message_system_pkey PRIMARY KEY (id)
  462 +);
  463 +
  464 +-- Column comments
  465 +COMMENT ON COLUMN public.message_system.company_id IS '公司ID';
  466 +
  467 +COMMENT ON COLUMN public.message_system.recipient_id IS '接收者ID';
  468 +
  469 +COMMENT ON COLUMN public.message_system. "type" IS '系统分类(0待定、1业务正常通知、2业务异常通知)';
  470 +
  471 +COMMENT ON COLUMN public.message_system.title IS '标题';
  472 +
  473 +COMMENT ON COLUMN public.message_system. "content" IS '内容';
  474 +
  475 +COMMENT ON COLUMN public.message_system.created_at IS '创建时间';
  476 +
  477 +COMMENT ON COLUMN public.message_system.updated_at IS '更新时间';
  478 +
  479 +COMMENT ON COLUMN public.message_system.deleted_at IS '删除时间';
  480 +
  481 +COMMENT ON COLUMN public.message_system. "version" IS '版本';
  482 +
  483 +COMMENT ON COLUMN public.message_system.is_del IS '是否删除';
  484 +
  485 +-- public."role" definition
  486 +-- Drop table
  487 +-- DROP TABLE public."role";
  488 +CREATE TABLE public."role"(
  489 + id bigserial NOT NULL, -- ID
  490 + "name" text NULL, -- 角色名称
  491 + auths jsonb NULL, -- 角色权限列表
  492 + remark text NULL, -- 备注
  493 + users jsonb NULL, -- 绑定的用户
  494 + created_at int8 NULL, -- 创建时间
  495 + updated_at int8 NULL, -- 更新时间
  496 + deleted_at int8 NULL, -- 删除时间
  497 + "version" int8 NULL, -- 版本
  498 + is_del int8 NULL, -- 是否删除
  499 + company_id int8 NULL, -- 公司ID
  500 + CONSTRAINT role_pkey PRIMARY KEY (id)
  501 +);
  502 +
  503 +CREATE INDEX idx_role_company_id ON public.role USING btree(company_id);
  504 +
  505 +-- Column comments
  506 +COMMENT ON COLUMN public."role".id IS 'ID';
  507 +
  508 +COMMENT ON COLUMN public."role"."name" IS '角色名称';
  509 +
  510 +COMMENT ON COLUMN public."role".auths IS '角色权限列表';
  511 +
  512 +COMMENT ON COLUMN public."role".remark IS '备注';
  513 +
  514 +COMMENT ON COLUMN public."role".users IS '绑定的用户';
  515 +
  516 +COMMENT ON COLUMN public."role".created_at IS '创建时间';
  517 +
  518 +COMMENT ON COLUMN public."role".updated_at IS '更新时间';
  519 +
  520 +COMMENT ON COLUMN public."role".deleted_at IS '删除时间';
  521 +
  522 +COMMENT ON COLUMN public."role"."version" IS '版本';
  523 +
  524 +COMMENT ON COLUMN public."role".is_del IS '是否删除';
  525 +
  526 +COMMENT ON COLUMN public."role".company_id IS '公司ID';
  527 +
  528 +-- public."user" definition
  529 +-- Drop table
  530 +-- DROP TABLE public."user";
  531 +CREATE TABLE public."user"(
  532 + id bigserial NOT NULL, -- 唯一标识
  533 + company_id int8 NULL, -- 公司ID
  534 + roles jsonb NULL, -- 角色
  535 + flag int8 NULL, -- 标识 1:管理员 2:普通用户 (有绑定角色是管理员)
  536 + "name" text NULL, -- 名称
  537 + avatar text NULL, -- 头像
  538 + phone text NULL, -- 手机号 唯一
  539 + "position" text NULL, -- 职位
  540 + "enable" int8 NULL, -- 启用状态 1:启用 2:禁用
  541 + audit_status int8 NULL, -- 审核状态 0:待审核 1:审核通过 2:拒绝
  542 + follower jsonb NULL, -- 关注我的人 (冗余)
  543 + "following" jsonb NULL, -- 我关注的人 (冗余)
  544 + created_at int8 NULL, -- 创建时间
  545 + updated_at int8 NULL, -- 更新时间
  546 + deleted_at int8 NULL, -- 删除时间
  547 + "version" int8 NULL, -- 版本
  548 + is_del int8 NULL, -- 是否删除
  549 + departments jsonb NULL, -- 所属部门
  550 + account_from text NULL, -- 账号来源 后台新增、扫码注册
  551 + pin_yin_name text NULL, -- 拼音
  552 + audit_at int8 NULL,
  553 + CONSTRAINT user_pkey PRIMARY KEY (id)
  554 +);
  555 +
  556 +CREATE INDEX idx_user_company_id ON public."user" USING btree(company_id);
  557 +
  558 +CREATE INDEX idx_user_phone ON public."user" USING btree(phone);
  559 +
  560 +-- Column comments
  561 +COMMENT ON COLUMN public."user".id IS '唯一标识';
  562 +
  563 +COMMENT ON COLUMN public."user".company_id IS '公司ID';
  564 +
  565 +COMMENT ON COLUMN public."user".roles IS '角色';
  566 +
  567 +COMMENT ON COLUMN public."user".flag IS '标识 1:管理员 2:普通用户 (有绑定角色是管理员)';
  568 +
  569 +COMMENT ON COLUMN public."user"."name" IS '名称';
  570 +
  571 +COMMENT ON COLUMN public."user".avatar IS '头像';
  572 +
  573 +COMMENT ON COLUMN public."user".phone IS '手机号 唯一';
  574 +
  575 +COMMENT ON COLUMN public."user"."position" IS '职位';
  576 +
  577 +COMMENT ON COLUMN public."user"."enable" IS '启用状态 1:启用 2:禁用';
  578 +
  579 +COMMENT ON COLUMN public."user".audit_status IS '审核状态 0:待审核 1:审核通过 2:拒绝';
  580 +
  581 +COMMENT ON COLUMN public."user".follower IS '关注我的人 (冗余)';
  582 +
  583 +COMMENT ON COLUMN public."user"."following" IS '我关注的人 (冗余)';
  584 +
  585 +COMMENT ON COLUMN public."user".created_at IS '创建时间';
  586 +
  587 +COMMENT ON COLUMN public."user".updated_at IS '更新时间';
  588 +
  589 +COMMENT ON COLUMN public."user".deleted_at IS '删除时间';
  590 +
  591 +COMMENT ON COLUMN public."user"."version" IS '版本';
  592 +
  593 +COMMENT ON COLUMN public."user".is_del IS '是否删除';
  594 +
  595 +COMMENT ON COLUMN public."user".departments IS '所属部门';
  596 +
  597 +COMMENT ON COLUMN public."user".account_from IS '账号来源 后台新增、扫码注册';
  598 +
  599 +COMMENT ON COLUMN public."user".pin_yin_name IS '拼音';
  600 +
  601 +-- public.user_follow definition
  602 +-- Drop table
  603 +-- DROP TABLE public.user_follow;
  604 +CREATE TABLE public.user_follow(
  605 + id bigserial NOT NULL,
  606 + created_at int8 NULL,
  607 + updated_at int8 NULL,
  608 + deleted_at int8 NULL,
  609 + "version" int8 NULL,
  610 + from_user_id int8 NULL,
  611 + to_user_id int8 NULL,
  612 + last_read_at int8 NULL,
  613 + CONSTRAINT user_follow_pkey PRIMARY KEY (id)
  614 +);
  615 +
  616 +CREATE INDEX idx_user_follow_from_user_id ON public.user_follow USING btree(from_user_id);
  617 +
  618 +-- public.user_love_flag definition
  619 +-- Drop table
  620 +-- DROP TABLE public.user_love_flag;
  621 +CREATE TABLE public.user_love_flag(
  622 + id bigserial NOT NULL,
  623 + article_id int8 NULL, -- 点赞文章时,文章id
  624 + comment_id int8 NULL, -- 点赞评论时,填评论id
  625 + user_id int8 NULL, -- 用户ID,谁点赞
  626 + created_at int8 NULL, -- 创建时间
  627 + updated_at int8 NULL, -- 更新时间
  628 + deleted_at int8 NULL, -- 删除时间
  629 + "version" int8 NULL, -- 版本
  630 + is_del int8 NULL, -- 是否删除
  631 + article_author int8 NULL, -- 文章作者id
  632 + comment_author int8 NULL, -- 填写评论的人员id
  633 + to_user_id int8 NULL, -- 点赞的接受人
  634 + company_id int8 NULL DEFAULT 0,
  635 + CONSTRAINT user_love_flag_pkey PRIMARY KEY (id)
  636 +);
  637 +
  638 +CREATE INDEX user_love_flag_comment_id_idx ON public.user_love_flag USING btree(comment_id);
  639 +
  640 +CREATE INDEX user_love_flag_user_id_idx ON public.user_love_flag USING btree(user_id);
  641 +
  642 +-- Column comments
  643 +COMMENT ON COLUMN public.user_love_flag.article_id IS '点赞文章时,文章id';
  644 +
  645 +COMMENT ON COLUMN public.user_love_flag.comment_id IS '点赞评论时,填评论id';
  646 +
  647 +COMMENT ON COLUMN public.user_love_flag.user_id IS '用户ID,谁点赞';
  648 +
  649 +COMMENT ON COLUMN public.user_love_flag.created_at IS '创建时间';
  650 +
  651 +COMMENT ON COLUMN public.user_love_flag.updated_at IS '更新时间';
  652 +
  653 +COMMENT ON COLUMN public.user_love_flag.deleted_at IS '删除时间';
  654 +
  655 +COMMENT ON COLUMN public.user_love_flag. "version" IS '版本';
  656 +
  657 +COMMENT ON COLUMN public.user_love_flag.is_del IS '是否删除';
  658 +
  659 +COMMENT ON COLUMN public.user_love_flag.article_author IS '文章作者id';
  660 +
  661 +COMMENT ON COLUMN public.user_love_flag.comment_author IS '填写评论的人员id';
  662 +
  663 +COMMENT ON COLUMN public.user_love_flag.to_user_id IS '点赞的接受人';
  664 +
  665 +-- public.user_read_article definition
  666 +-- Drop table
  667 +-- DROP TABLE public.user_read_article;
  668 +CREATE TABLE public.user_read_article(
  669 + id bigserial NOT NULL,
  670 + created_at int8 NULL,
  671 + updated_at int8 NULL,
  672 + deleted_at int8 NULL,
  673 + "version" int8 NULL,
  674 + company_id int8 NULL,
  675 + user_id int8 NULL,
  676 + article_id int8 NULL,
  677 + title text NULL,
  678 + author jsonb NULL DEFAULT '{}' ::jsonb,
  679 + is_del int8 NULL DEFAULT 0,
  680 + CONSTRAINT user_read_article_pkey PRIMARY KEY (id)
  681 +);
  682 +
  683 +CREATE INDEX user_read_article_company_id_idx ON public.user_read_article USING btree(company_id);
  684 +
  685 +CREATE INDEX user_read_article_user_id_idx ON public.user_read_article USING btree(user_id);
  686 +
  687 +-- public.user_role definition
  688 +-- Drop table
  689 +-- DROP TABLE public.user_role;
  690 +CREATE TABLE public.user_role(
  691 + id bigserial NOT NULL,
  692 + company_id int8 NULL,
  693 + user_id int8 NULL,
  694 + role_id int8 NULL,
  695 + created_at int8 NULL,
  696 + updated_at int8 NULL,
  697 + deleted_at int8 NULL,
  698 + "version" int8 NULL,
  699 + CONSTRAINT user_role_pkey PRIMARY KEY (id)
  700 +);
  701 +
  702 +-- public.user_simples definition
  703 +-- Drop table
  704 +-- DROP TABLE public.user_simples;
  705 +CREATE TABLE public.user_simples(
  706 + id bigserial NOT NULL,
  707 + "name" text NULL,
  708 + avatar text NULL,
  709 + "group" text NULL,
  710 + "position" text NULL,
  711 + CONSTRAINT user_simples_pkey PRIMARY KEY (id)
  712 +);
  713 +