ApplicationRuleFileConst.java 462 B

12345678910111213141516171819202122232425
  1. package com.simuwang.base.common.conts;
  2. public class ApplicationRuleFileConst {
  3. /**
  4. * 邮件标题
  5. */
  6. public final static Integer EMAIL_TITLE_FILE = 1;
  7. /**
  8. * 邮件正文
  9. */
  10. public final static Integer EMAIL_CONTENT_FILE = 2;
  11. /**
  12. * 附件名称
  13. */
  14. public final static Integer EMAIL_FILE_NAME_FILE = 3;
  15. /**
  16. * 表格内容
  17. */
  18. public final static Integer EMAIL_EXCEL_CONTENT_FILE = 4;
  19. }