UNPKG

@etsoo/smarterp-core

Version:
36 lines (31 loc) 510 B
/** * Person profile send email request data * 人员档案发送邮件请求数据 */ export type SendProfileEmailRQ = { /** * Profile ID * 档案 ID */ id: number; /** * Persons * 人员编号数组 */ persons: number[]; /** * Message * 留言 */ message?: string; /** * Include attachments or not * 是否包含附件 */ includeAttachments?: boolean; /** * Include comments or not * 是否包含评论 */ includeComments?: boolean; };