tom055

Results 12 issues of tom055

DTO ``` @Getter @Setter public class DeviceRuleNotifyDto { //规则表 DeviceRulePo deviceRulePo; //通知表 List notifyTemplatePos; } ``` service ``` MPJLambdaWrapper baseJoin = new MPJLambdaWrapper() .selectAssociation("t", DeviceRulePo.class, DeviceRuleNotifyDto::getDeviceRulePo) .selectCollection(NotifyTemplatePo.class, DeviceRuleNotifyDto::getNotifyTemplatePos) .leftJoin(DeviceRuleNotifyPo.class, DeviceRuleNotifyPo::getRuleId,...