zhengyiming
2025-02-10 0f686ea1fe4700a909a6159efcf1fcb0e1f88a17
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
export enum InformationRecommendStatusEnum {
  /**
   * 推荐
   */
  Recommend = 10,
  /**
   * 未推荐
   */
  NotRecommend = 20,
}
 
export enum InformationFormTypeEnum {
  /**
   * 单位
   */
  Company = 0,
  /**
   * 用户自发
   */
  Personal = 1,
  /**
   * 自发
   */
  Spontaneous = 2,
  /**
   * 采集
   */
  Acquisition = 3,
  /**
   * 微信公众号
   */
  WxCgi = 4,
}
 
export const InformationFormTypeText = {
  [InformationFormTypeEnum.Company]: '单位',
  [InformationFormTypeEnum.Personal]: '用户自发',
  [InformationFormTypeEnum.Spontaneous]: '自发',
  [InformationFormTypeEnum.Acquisition]: '采集',
  [InformationFormTypeEnum.WxCgi]: '微信公众号',
};