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
277 B

  1. package com.qmrz.mybatis.sql;
  2. import lombok.AllArgsConstructor;
  3. import lombok.Data;
  4. @Data
  5. @AllArgsConstructor
  6. public class ConditionGeneralValue {
  7. /**
  8. * sql参数名称
  9. */
  10. private String name;
  11. /**
  12. * sql参数值
  13. */
  14. private Object value;
  15. }