Merge branch 'dev' of codeup.aliyun.com:61c14a7efa282c88e103c23f/oak-general-business into dev

This commit is contained in:
wenjiarui 2023-12-05 17:46:41 +08:00
commit 94b93e35e3
2 changed files with 0 additions and 34 deletions

View File

@ -1,14 +0,0 @@
import { String, Text, Datetime } from 'oak-domain/lib/types/DataType';
import { EntityShape } from 'oak-domain/lib/types/Entity';
import { Schema as Application } from './Application';
export interface Schema extends EntityShape {
application: Application;
wechatId: String<64>;
title: Text;
primaryIndustry: Text;
deputyIndustry: Text;
content: Text;
example: Text;
param: Object;
syncAt: Datetime;
}

View File

@ -1,20 +0,0 @@
;
const entityDesc = {
locales: {
zh_CN: {
name: '公众号标签',
attr: {
application: '关联应用',
wechatId: '微信端id',
title: '标题',
primaryIndustry: '所属一级行业',
deputyIndustry: '所属二级行业',
content: '内容',
example: '示例',
param: '选填参数',
syncAt: '同步时间',
},
},
},
};
export {};