修改公众号数据结构
This commit is contained in:
parent
ac01515fae
commit
c4557e65ff
|
|
@ -2,6 +2,7 @@ import {
|
||||||
String,
|
String,
|
||||||
Boolean,
|
Boolean,
|
||||||
Text,
|
Text,
|
||||||
|
Int,
|
||||||
} from 'oak-domain/lib/types/DataType';
|
} from 'oak-domain/lib/types/DataType';
|
||||||
import { ActionDef } from 'oak-domain/lib/types/Action';
|
import { ActionDef } from 'oak-domain/lib/types/Action';
|
||||||
import { EntityShape } from 'oak-domain/lib/types/Entity';
|
import { EntityShape } from 'oak-domain/lib/types/Entity';
|
||||||
|
|
@ -20,6 +21,7 @@ export interface Schema extends EntityShape {
|
||||||
name: String<32>;
|
name: String<32>;
|
||||||
description: Text;
|
description: Text;
|
||||||
config: WechatPublicConfig;
|
config: WechatPublicConfig;
|
||||||
|
offset: Int<4>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -60,6 +62,7 @@ const locale: LocaleDef<
|
||||||
entityId: '对象Id',
|
entityId: '对象Id',
|
||||||
description: '描述',
|
description: '描述',
|
||||||
config: '配置',
|
config: '配置',
|
||||||
|
offset: '已同步素材位置',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue