import { BaseFormDTO, BusinessPO } from '../common/base' export interface MessageManage extends BusinessPO { // 发送开关, 0不发送,1 发送 sendSwitch: number // 模板编号,唯一 templateCode: string // 消息模板内容 templateContent: string // 模板说明 templateIntro: string // 消息模板名称 templateName: string // 模板类型 ,多个以逗号隔开(1短信、2钉钉、3微信公众号、4微信小程序、5邮件、6web推送、7安卓app推送8苹果app推送,9z站内消息,10任务) templateType: string } export interface MessageManageFormDTO extends BaseFormDTO { // 发送开关 sendSwitch?: number // 版本编号 ,唯一 templateCode: string // 消息模板内容 templateContent: string // 模板说明 templateIntro?: string // 消息模板名称 templateName: string // 模板类型以逗号分割 templateType?: string // 模板类型数组 templateListData?: string[] }