You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
623 B

2 years ago
  1. namespace Euro.Transfer
  2. {
  3. public class GlobalConstWord
  4. {
  5. public const string TASKALERTSQL = @" SELECT t.OrgID,[EventID],[EventName],[Owner],[StartDate],[EndDate],(CASE [Important] WHEN 'M' THEN '普通' else '重要' end) as [Important],m.[MemberName] as [CreateUser],[TaskDescription],SourceFrom,Params
  6. FROM OTB_SYS_Task t inner join OTB_SYS_Members m on t.CreateUser=m.MemberID and t.OrgID=m.OrgID
  7. where ([Status]='U' AND AlertTime IS NULL) or ([Status]<>'O' AND [Status]<>'D' AND AlertTime>=GETDATE()) ";
  8. }
  9. }