CNAS取数仪器端升级
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

4 ay önce
1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CnasSynchrousModel
  6. {
  7. public class TableMessageParam : ApiBaseParam
  8. {
  9. /// <summary>
  10. /// 自定义查询
  11. /// </summary>
  12. public AutoSql AutoSql { get; set; }
  13. /// <summary>
  14. /// 条件参数
  15. /// </summary>
  16. public ConditionParams Condition { get; set; }
  17. }
  18. }