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.

18 lines
494 B

2 years ago
  1. namespace EasyBL.WebApi.Message
  2. {
  3. public class SuccessResponseMessage : ResponseMessage
  4. {
  5. public SuccessResponseMessage(string i_sMsg, RequestMessage i_crm = null)
  6. {
  7. RESULT = ResponseResult.RR_TRUE;
  8. STATUSCODE = 200;
  9. MSG = i_sMsg;
  10. if (null != i_crm)
  11. {
  12. PROJECT = i_crm.PROJECT;
  13. PROJECTVER = i_crm.PROJECTVER;
  14. TYPE = i_crm.TYPE;
  15. }
  16. }
  17. }
  18. }