Commit c8bd587b by huluobin

long 序列化

parent 470d6a7e
...@@ -20,7 +20,8 @@ public class TimesCardServiceImpl extends ServiceImpl<TimesCardTypeMapper, Times ...@@ -20,7 +20,8 @@ public class TimesCardServiceImpl extends ServiceImpl<TimesCardTypeMapper, Times
public List<TimesCardType> getTimesCardTypeList() { public List<TimesCardType> getTimesCardTypeList() {
return timesCardTypeMapper.queryPageAggregate(); return timesCardTypeMapper.selectList(new LambdaQueryWrapper<TimesCardType>()
.eq(TimesCardType::getStatus, TimesCardType.STATUS_ON));
} }
public TimesCardType getAggregate(Integer id) { public TimesCardType getAggregate(Integer id) {
......
...@@ -106,8 +106,8 @@ ...@@ -106,8 +106,8 @@
left join times_card_type_content tctc on tctc.card_type_id = tct.id left join times_card_type_content tctc on tctc.card_type_id = tct.id
left join sys_member_authority sma on sma.member_id = tct.id left join sys_member_authority sma on sma.member_id = tct.id
left join store_manage sm on sm.id = sma.data_id left join store_manage sm on sm.id = sma.data_id
where sma.type=1 # where sma.type=1
and sma.member_type=10 # and sma.member_type=10
and tct.status =1 and tct.status =1
</select> </select>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment