| | |
| | | //查询方式 |
| | | private DaoQueryCondition.QueryType queryType; |
| | | |
| | | public DaoQueryColumnData(String columnName, String type, DaoQueryCondition.QueryType queryType) { |
| | | super(columnName, type); |
| | | //针对的列 |
| | | private MybatisColumnData columnData; |
| | | |
| | | |
| | | public DaoQueryColumnData(String property, String type, DaoQueryCondition.QueryType queryType) { |
| | | super(property, type); |
| | | this.queryType = queryType; |
| | | } |
| | | |
| | | public DaoQueryColumnData(String property, MybatisColumnData columnData, String type, DaoQueryCondition.QueryType queryType) { |
| | | super(property, type); |
| | | this.queryType = queryType; |
| | | this.columnData = columnData; |
| | | } |
| | | |
| | | |
| | |
| | | public void setQueryType(DaoQueryCondition.QueryType queryType) { |
| | | this.queryType = queryType; |
| | | } |
| | | |
| | | public MybatisColumnData getColumnData() { |
| | | return columnData; |
| | | } |
| | | |
| | | public void setColumnData(MybatisColumnData columnData) { |
| | | this.columnData = columnData; |
| | | } |
| | | } |