Ejemplo n.º 1
0
 public void SaveRcMailList(string bu, string value)
 {
     if (value != null)
     {
         value = value.ToLower();                    // 小写
     }
     SysParaDa.SaveSysPara(RC_MAILLIST, bu, value);
 }
Ejemplo n.º 2
0
 public void SaveRcAttendeeList(string bu, string value)
 {
     if (value != null)
     {
         value = value.ToLower();                    // 小写
     }
     SysParaDa.SaveSysPara(RC_ATTENDEELIST, bu, value);
 }
Ejemplo n.º 3
0
 public void SaveLeProcessOwner(string bu, string value)
 {
     if (value != null)
     {
         value = value.ToLower();                    // 小写
     }
     SysParaDa.SaveSysPara(LE_PROCESSOWNER, bu, value);
 }
Ejemplo n.º 4
0
 public void SaveSysAdminList(string value)
 {
     if (value != null)
     {
         value = value.ToLower();                    // 小写
     }
     SysParaDa.SaveSysPara(SYS_ADMIN, null, value);
 }
Ejemplo n.º 5
0
 public void SaveRcMailTemp(string bu, string value)
 {
     SysParaDa.SaveSysPara(RC_MAILTEMP, bu, value);
 }
Ejemplo n.º 6
0
 public Dictionary <string, string> GetAllLeProcessOwner()
 {
     return(SysParaDa.GetSysParas(LE_PROCESSOWNER));
 }
Ejemplo n.º 7
0
 public string GetLeExpList(string itcode)
 {
     return(SysParaDa.GetSysPara(itcode + LE_EXPLIST, null));
 }
Ejemplo n.º 8
0
 public string GetLeProcessOwner(string bu)
 {
     return(SysParaDa.GetSysPara(LE_PROCESSOWNER, bu));
 }
Ejemplo n.º 9
0
 public string GetLeMailList(string bu)
 {
     return(SysParaDa.GetSysPara(LE_MAILLIST, bu));
 }
Ejemplo n.º 10
0
 public string GetSysAdminList()
 {
     return(SysParaDa.GetSysPara(SYS_ADMIN, null));
 }
Ejemplo n.º 11
0
 public string GetQrCloseLoopMailList(string bu)
 {
     return(SysParaDa.GetSysPara(CL_MAILLIST, bu));
 }
Ejemplo n.º 12
0
 public string GetQrMailList(string bu)
 {
     return(SysParaDa.GetSysPara(QR_MAILLIST, bu));
 }
Ejemplo n.º 13
0
 public string GetRcMailTemp(string bu)
 {
     return(SysParaDa.GetSysPara(RC_MAILTEMP, bu));
 }
Ejemplo n.º 14
0
 public string GetRcAttendeeList(string bu)
 {
     return(SysParaDa.GetSysPara(RC_ATTENDEELIST, bu));
 }
Ejemplo n.º 15
0
        private const string LE_EXPLIST      = "LEEXPLIST";      // QR 导出列列表


        public string GetRcMailList(string bu)
        {
            return(SysParaDa.GetSysPara(RC_MAILLIST, bu));
        }
Ejemplo n.º 16
0
 public void SaveLeExpList(string itcode, string value)
 {
     SysParaDa.SaveSysPara(itcode + LE_EXPLIST, null, value);
 }