Brand.cs 1.2 KB

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem
  4. {
  5. public class Brand
  6. {
  7. public int Id { get; set; } //品牌ID
  8. public string QueueName { get; set; } //队列名称
  9. public List<FieldRelationTable> FieldRelation { get; set; } //字段对应关系
  10. public string TargetTableName { get; set; } //目标表
  11. public int DataType { get; set; } //数据类型,通过此属性判断操作相应的表,如:激活=1,交易=2,流量卡分佣交易=3,绑定=4,首刷=5,免押=6,返押=7,商户注册=8,商户在网达标=9
  12. public string ReqType { get; set; } //请求方式,api、ftp
  13. public string Url { get; set; } //请求地址
  14. public string ReqParam { get; set; } //请求参数
  15. public string FtpUserName { get; set; } //ftp账号
  16. public string FtpPassword { get; set; } //ftp密码
  17. public string CheckKey { get; set; } //要匹配的字段
  18. }
  19. public class FieldRelationTable
  20. {
  21. public string SourceFieldName { get; set; } //来源字段名(第三方字段)
  22. public string TargetFieldName { get; set; } //目标字段名
  23. public string TargetFieldType { get; set; } //目标字段类型
  24. }
  25. }