61 changed files with 244 additions and 342 deletions
@ -1,13 +0,0 @@ |
|||||
package org.dromara.sample.manage.dao; |
|
||||
|
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
||||
import org.dromara.sample.manage.model.entity.DeviceDictionaryEntity; |
|
||||
|
|
||||
/** |
|
||||
* |
|
||||
* @author sean.zhou |
|
||||
* @date 2021/11/15 |
|
||||
* @version 0.1 |
|
||||
*/ |
|
||||
public interface IDeviceDictionaryMapper extends BaseMapper<DeviceDictionaryEntity> { |
|
||||
} |
|
@ -1,12 +0,0 @@ |
|||||
package org.dromara.sample.manage.dao; |
|
||||
|
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
||||
import org.dromara.sample.manage.model.entity.DeviceHmsEntity; |
|
||||
|
|
||||
/** |
|
||||
* @author sean |
|
||||
* @version 1.1 |
|
||||
* @date 2022/7/6 |
|
||||
*/ |
|
||||
public interface IDeviceHmsMapper extends BaseMapper<DeviceHmsEntity> { |
|
||||
} |
|
@ -1,12 +0,0 @@ |
|||||
package org.dromara.sample.manage.dao; |
|
||||
|
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
||||
import org.dromara.sample.manage.model.entity.DeviceLogsEntity; |
|
||||
|
|
||||
/** |
|
||||
* @author sean |
|
||||
* @version 1.2 |
|
||||
* @date 2022/9/7 |
|
||||
*/ |
|
||||
public interface IDeviceLogsMapper extends BaseMapper<DeviceLogsEntity> { |
|
||||
} |
|
@ -1,14 +0,0 @@ |
|||||
package org.dromara.sample.manage.dao; |
|
||||
|
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
||||
import org.dromara.sample.manage.model.entity.DeviceEntity; |
|
||||
|
|
||||
/** |
|
||||
* |
|
||||
* @author sean.zhou |
|
||||
* @date 2021/11/10 |
|
||||
* @version 0.1 |
|
||||
*/ |
|
||||
public interface IDeviceMapper extends BaseMapper<DeviceEntity> { |
|
||||
|
|
||||
} |
|
@ -1,12 +0,0 @@ |
|||||
package org.dromara.sample.manage.dao; |
|
||||
|
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
||||
import org.dromara.sample.manage.model.entity.DevicePayloadEntity; |
|
||||
|
|
||||
/** |
|
||||
* @author sean.zhou |
|
||||
* @date 2021/11/19 |
|
||||
* @version 0.1 |
|
||||
*/ |
|
||||
public interface IDevicePayloadMapper extends BaseMapper<DevicePayloadEntity> { |
|
||||
} |
|
@ -1,12 +0,0 @@ |
|||||
package org.dromara.sample.manage.dao; |
|
||||
|
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
||||
import org.dromara.sample.manage.model.entity.FirmwareModelEntity; |
|
||||
|
|
||||
/** |
|
||||
* @author sean |
|
||||
* @version 1.3 |
|
||||
* @date 2022/12/21 |
|
||||
*/ |
|
||||
public interface IFirmwareModelMapper extends BaseMapper<FirmwareModelEntity> { |
|
||||
} |
|
@ -1,12 +0,0 @@ |
|||||
package org.dromara.sample.manage.dao; |
|
||||
|
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
||||
import org.dromara.sample.manage.model.entity.LogsFileIndexEntity; |
|
||||
|
|
||||
/** |
|
||||
* @author sean |
|
||||
* @version 1.2 |
|
||||
* @date 2022/9/8 |
|
||||
*/ |
|
||||
public interface ILogsFileIndexMapper extends BaseMapper<LogsFileIndexEntity> { |
|
||||
} |
|
@ -1,12 +0,0 @@ |
|||||
package org.dromara.sample.manage.dao; |
|
||||
|
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
||||
import org.dromara.sample.manage.model.entity.LogsFileEntity; |
|
||||
|
|
||||
/** |
|
||||
* @author sean |
|
||||
* @version 1.2 |
|
||||
* @date 2022/9/7 |
|
||||
*/ |
|
||||
public interface ILogsFileMapper extends BaseMapper<LogsFileEntity> { |
|
||||
} |
|
@ -1,8 +0,0 @@ |
|||||
package org.dromara.sample.manage.dao; |
|
||||
|
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
||||
import org.dromara.sample.manage.model.entity.UserEntity; |
|
||||
|
|
||||
public interface IUserMapper extends BaseMapper<UserEntity> { |
|
||||
|
|
||||
} |
|
@ -0,0 +1,13 @@ |
|||||
|
package org.dromara.sample.manage.mapper; |
||||
|
|
||||
|
import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; |
||||
|
import org.dromara.sample.manage.model.entity.DeviceDictionaryEntity; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
* @author sean.zhou |
||||
|
* @date 2021/11/15 |
||||
|
* @version 0.1 |
||||
|
*/ |
||||
|
public interface IDeviceDictionaryMapper extends BaseMapperPlus<DeviceDictionaryEntity,BaseMapperPlus> { |
||||
|
} |
@ -0,0 +1,12 @@ |
|||||
|
package org.dromara.sample.manage.mapper; |
||||
|
|
||||
|
import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; |
||||
|
import org.dromara.sample.manage.model.entity.DeviceHmsEntity; |
||||
|
|
||||
|
/** |
||||
|
* @author sean |
||||
|
* @version 1.1 |
||||
|
* @date 2022/7/6 |
||||
|
*/ |
||||
|
public interface IDeviceHmsMapper extends BaseMapperPlus<DeviceHmsEntity,DeviceHmsEntity> { |
||||
|
} |
@ -0,0 +1,12 @@ |
|||||
|
package org.dromara.sample.manage.mapper; |
||||
|
|
||||
|
import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; |
||||
|
import org.dromara.sample.manage.model.entity.DeviceLogsEntity; |
||||
|
|
||||
|
/** |
||||
|
* @author sean |
||||
|
* @version 1.2 |
||||
|
* @date 2022/9/7 |
||||
|
*/ |
||||
|
public interface IDeviceLogsMapper extends BaseMapperPlus<DeviceLogsEntity,DeviceLogsEntity> { |
||||
|
} |
@ -0,0 +1,14 @@ |
|||||
|
package org.dromara.sample.manage.mapper; |
||||
|
|
||||
|
import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; |
||||
|
import org.dromara.sample.manage.model.entity.DeviceEntity; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
* @author sean.zhou |
||||
|
* @date 2021/11/10 |
||||
|
* @version 0.1 |
||||
|
*/ |
||||
|
public interface IDeviceMapper extends BaseMapperPlus<DeviceEntity,DeviceEntity> { |
||||
|
|
||||
|
} |
@ -0,0 +1,12 @@ |
|||||
|
package org.dromara.sample.manage.mapper; |
||||
|
|
||||
|
import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; |
||||
|
import org.dromara.sample.manage.model.entity.DevicePayloadEntity; |
||||
|
|
||||
|
/** |
||||
|
* @author sean.zhou |
||||
|
* @date 2021/11/19 |
||||
|
* @version 0.1 |
||||
|
*/ |
||||
|
public interface IDevicePayloadMapper extends BaseMapperPlus<DevicePayloadEntity,DevicePayloadEntity> { |
||||
|
} |
@ -0,0 +1,12 @@ |
|||||
|
package org.dromara.sample.manage.mapper; |
||||
|
|
||||
|
import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; |
||||
|
import org.dromara.sample.manage.model.entity.FirmwareModelEntity; |
||||
|
|
||||
|
/** |
||||
|
* @author sean |
||||
|
* @version 1.3 |
||||
|
* @date 2022/12/21 |
||||
|
*/ |
||||
|
public interface IFirmwareModelMapper extends BaseMapperPlus<FirmwareModelEntity,FirmwareModelEntity> { |
||||
|
} |
@ -0,0 +1,12 @@ |
|||||
|
package org.dromara.sample.manage.mapper; |
||||
|
|
||||
|
import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; |
||||
|
import org.dromara.sample.manage.model.entity.LogsFileIndexEntity; |
||||
|
|
||||
|
/** |
||||
|
* @author sean |
||||
|
* @version 1.2 |
||||
|
* @date 2022/9/8 |
||||
|
*/ |
||||
|
public interface ILogsFileIndexMapper extends BaseMapperPlus<LogsFileIndexEntity,LogsFileIndexEntity> { |
||||
|
} |
@ -0,0 +1,12 @@ |
|||||
|
package org.dromara.sample.manage.mapper; |
||||
|
|
||||
|
import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; |
||||
|
import org.dromara.sample.manage.model.entity.LogsFileEntity; |
||||
|
|
||||
|
/** |
||||
|
* @author sean |
||||
|
* @version 1.2 |
||||
|
* @date 2022/9/7 |
||||
|
*/ |
||||
|
public interface ILogsFileMapper extends BaseMapperPlus<LogsFileEntity,LogsFileEntity> { |
||||
|
} |
@ -1,4 +1,4 @@ |
|||||
package org.dromara.sample.manage.dao; |
package org.dromara.sample.manage.mapper; |
||||
|
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import org.dromara.sample.manage.model.entity.WorkspaceEntity; |
import org.dromara.sample.manage.model.entity.WorkspaceEntity; |
@ -1,37 +0,0 @@ |
|||||
package org.dromara.sample.manage.model.dto; |
|
||||
|
|
||||
import com.fasterxml.jackson.annotation.JsonProperty; |
|
||||
import lombok.AllArgsConstructor; |
|
||||
import lombok.Builder; |
|
||||
import lombok.Data; |
|
||||
import lombok.NoArgsConstructor; |
|
||||
|
|
||||
@Data |
|
||||
@Builder |
|
||||
@AllArgsConstructor |
|
||||
@NoArgsConstructor |
|
||||
public class UserDTO { |
|
||||
|
|
||||
@JsonProperty("user_id") |
|
||||
private String userId; |
|
||||
|
|
||||
private String username; |
|
||||
|
|
||||
@JsonProperty("workspace_id") |
|
||||
private String workspaceId; |
|
||||
|
|
||||
@JsonProperty("user_type") |
|
||||
private Integer userType; |
|
||||
|
|
||||
@JsonProperty("mqtt_username") |
|
||||
private String mqttUsername; |
|
||||
|
|
||||
@JsonProperty("mqtt_password") |
|
||||
private String mqttPassword; |
|
||||
|
|
||||
@JsonProperty("access_token") |
|
||||
private String accessToken; |
|
||||
|
|
||||
@JsonProperty("mqtt_addr") |
|
||||
private String mqttAddr; |
|
||||
} |
|
@ -1,34 +0,0 @@ |
|||||
package org.dromara.sample.manage.model.dto; |
|
||||
|
|
||||
import lombok.AllArgsConstructor; |
|
||||
import lombok.Builder; |
|
||||
import lombok.Data; |
|
||||
import lombok.NoArgsConstructor; |
|
||||
|
|
||||
import java.time.LocalDateTime; |
|
||||
|
|
||||
/** |
|
||||
* @author sean |
|
||||
* @version 1.0 |
|
||||
* @date 2022/4/18 |
|
||||
*/ |
|
||||
@Data |
|
||||
@Builder |
|
||||
@AllArgsConstructor |
|
||||
@NoArgsConstructor |
|
||||
public class UserListDTO { |
|
||||
|
|
||||
private String userId; |
|
||||
|
|
||||
private String username; |
|
||||
|
|
||||
private String workspaceName; |
|
||||
|
|
||||
private String userType; |
|
||||
|
|
||||
private String mqttUsername; |
|
||||
|
|
||||
private String mqttPassword; |
|
||||
|
|
||||
private LocalDateTime createTime; |
|
||||
} |
|
@ -1,21 +0,0 @@ |
|||||
package org.dromara.sample.manage.model.dto; |
|
||||
|
|
||||
import lombok.AllArgsConstructor; |
|
||||
import lombok.Data; |
|
||||
import lombok.NoArgsConstructor; |
|
||||
import lombok.NonNull; |
|
||||
|
|
||||
@Data |
|
||||
@AllArgsConstructor |
|
||||
@NoArgsConstructor |
|
||||
public class UserLoginDTO { |
|
||||
|
|
||||
@NonNull |
|
||||
private String username; |
|
||||
|
|
||||
@NonNull |
|
||||
private String password; |
|
||||
|
|
||||
@NonNull |
|
||||
private Integer flag; |
|
||||
} |
|
@ -1,12 +0,0 @@ |
|||||
package org.dromara.sample.map.dao; |
|
||||
|
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
||||
import org.dromara.sample.map.model.entity.DeviceFlightAreaEntity; |
|
||||
|
|
||||
/** |
|
||||
* @author sean |
|
||||
* @version 1.9 |
|
||||
* @date 2023/11/23 |
|
||||
*/ |
|
||||
public interface IDeviceFlightAreaMapper extends BaseMapper<DeviceFlightAreaEntity> { |
|
||||
} |
|
@ -1,12 +0,0 @@ |
|||||
package org.dromara.sample.map.dao; |
|
||||
|
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
||||
import org.dromara.sample.map.model.entity.ElementCoordinateEntity; |
|
||||
|
|
||||
/** |
|
||||
* @author sean |
|
||||
* @version 0.2 |
|
||||
* @date 2021/11/29 |
|
||||
*/ |
|
||||
public interface IElementCoordinateMapper extends BaseMapper<ElementCoordinateEntity> { |
|
||||
} |
|
@ -1,12 +0,0 @@ |
|||||
package org.dromara.sample.map.dao; |
|
||||
|
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
||||
import org.dromara.sample.map.model.entity.FlightAreaFileEntity; |
|
||||
|
|
||||
/** |
|
||||
* @author sean |
|
||||
* @version 1.9 |
|
||||
* @date 2023/11/22 |
|
||||
*/ |
|
||||
public interface IFlightAreaFileMapper extends BaseMapper<FlightAreaFileEntity> { |
|
||||
} |
|
@ -1,12 +0,0 @@ |
|||||
package org.dromara.sample.map.dao; |
|
||||
|
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
||||
import org.dromara.sample.map.model.entity.FlightAreaPropertyEntity; |
|
||||
|
|
||||
/** |
|
||||
* @author sean |
|
||||
* @version 1.9 |
|
||||
* @date 2023/11/21 |
|
||||
*/ |
|
||||
public interface IFlightAreaPropertyMapper extends BaseMapper<FlightAreaPropertyEntity> { |
|
||||
} |
|
@ -1,12 +0,0 @@ |
|||||
package org.dromara.sample.map.dao; |
|
||||
|
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
||||
import org.dromara.sample.map.model.entity.GroupElementEntity; |
|
||||
|
|
||||
/** |
|
||||
* @author sean |
|
||||
* @version 0.2 |
|
||||
* @date 2021/11/29 |
|
||||
*/ |
|
||||
public interface IGroupElementMapper extends BaseMapper<GroupElementEntity> { |
|
||||
} |
|
@ -1,12 +0,0 @@ |
|||||
package org.dromara.sample.map.dao; |
|
||||
|
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
||||
import org.dromara.sample.map.model.entity.GroupEntity; |
|
||||
|
|
||||
/** |
|
||||
* @author sean |
|
||||
* @version 0.2 |
|
||||
* @date 2021/11/29 |
|
||||
*/ |
|
||||
public interface IGroupMapper extends BaseMapper<GroupEntity> { |
|
||||
} |
|
@ -0,0 +1,13 @@ |
|||||
|
package org.dromara.sample.map.mapper; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; |
||||
|
import org.dromara.sample.map.model.entity.DeviceFlightAreaEntity; |
||||
|
|
||||
|
/** |
||||
|
* @author sean |
||||
|
* @version 1.9 |
||||
|
* @date 2023/11/23 |
||||
|
*/ |
||||
|
public interface IDeviceFlightAreaMapper extends BaseMapperPlus<DeviceFlightAreaEntity,DeviceFlightAreaEntity> { |
||||
|
} |
@ -0,0 +1,14 @@ |
|||||
|
package org.dromara.sample.map.mapper; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; |
||||
|
import org.dromara.sample.map.model.entity.DeviceFlightAreaEntity; |
||||
|
import org.dromara.sample.map.model.entity.ElementCoordinateEntity; |
||||
|
|
||||
|
/** |
||||
|
* @author sean |
||||
|
* @version 0.2 |
||||
|
* @date 2021/11/29 |
||||
|
*/ |
||||
|
public interface IElementCoordinateMapper extends BaseMapperPlus<ElementCoordinateEntity, ElementCoordinateEntity> { |
||||
|
} |
@ -0,0 +1,14 @@ |
|||||
|
package org.dromara.sample.map.mapper; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; |
||||
|
import org.dromara.sample.map.model.entity.ElementCoordinateEntity; |
||||
|
import org.dromara.sample.map.model.entity.FlightAreaFileEntity; |
||||
|
|
||||
|
/** |
||||
|
* @author sean |
||||
|
* @version 1.9 |
||||
|
* @date 2023/11/22 |
||||
|
*/ |
||||
|
public interface IFlightAreaFileMapper extends BaseMapperPlus<FlightAreaFileEntity, FlightAreaFileEntity> { |
||||
|
} |
@ -0,0 +1,13 @@ |
|||||
|
package org.dromara.sample.map.mapper; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; |
||||
|
import org.dromara.sample.map.model.entity.FlightAreaPropertyEntity; |
||||
|
|
||||
|
/** |
||||
|
* @author sean |
||||
|
* @version 1.9 |
||||
|
* @date 2023/11/21 |
||||
|
*/ |
||||
|
public interface IFlightAreaPropertyMapper extends BaseMapperPlus<FlightAreaPropertyEntity,FlightAreaPropertyEntity> { |
||||
|
} |
@ -0,0 +1,13 @@ |
|||||
|
package org.dromara.sample.map.mapper; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; |
||||
|
import org.dromara.sample.map.model.entity.GroupElementEntity; |
||||
|
|
||||
|
/** |
||||
|
* @author sean |
||||
|
* @version 0.2 |
||||
|
* @date 2021/11/29 |
||||
|
*/ |
||||
|
public interface IGroupElementMapper extends BaseMapperPlus<GroupElementEntity,GroupElementEntity> { |
||||
|
} |
@ -0,0 +1,13 @@ |
|||||
|
package org.dromara.sample.map.mapper; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; |
||||
|
import org.dromara.sample.map.model.entity.GroupEntity; |
||||
|
|
||||
|
/** |
||||
|
* @author sean |
||||
|
* @version 0.2 |
||||
|
* @date 2021/11/29 |
||||
|
*/ |
||||
|
public interface IGroupMapper extends BaseMapperPlus<GroupEntity,GroupEntity> { |
||||
|
} |
@ -1,12 +0,0 @@ |
|||||
package org.dromara.sample.media.dao; |
|
||||
|
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
||||
import org.dromara.sample.media.model.MediaFileEntity; |
|
||||
|
|
||||
/** |
|
||||
* @author sean |
|
||||
* @version 0.2 |
|
||||
* @date 2021/12/9 |
|
||||
*/ |
|
||||
public interface IFileMapper extends BaseMapper<MediaFileEntity> { |
|
||||
} |
|
@ -0,0 +1,13 @@ |
|||||
|
package org.dromara.sample.media.mapper; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; |
||||
|
import org.dromara.sample.media.model.MediaFileEntity; |
||||
|
|
||||
|
/** |
||||
|
* @author sean |
||||
|
* @version 0.2 |
||||
|
* @date 2021/12/9 |
||||
|
*/ |
||||
|
public interface IFileMapper extends BaseMapperPlus<MediaFileEntity,MediaFileEntity> { |
||||
|
} |
@ -1,12 +0,0 @@ |
|||||
package org.dromara.sample.wayline.dao; |
|
||||
|
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
||||
import org.dromara.sample.wayline.model.entity.WaylineFileEntity; |
|
||||
|
|
||||
/** |
|
||||
* @author sean |
|
||||
* @version 0.3 |
|
||||
* @date 2021/12/22 |
|
||||
*/ |
|
||||
public interface IWaylineFileMapper extends BaseMapper<WaylineFileEntity> { |
|
||||
} |
|
@ -1,12 +0,0 @@ |
|||||
package org.dromara.sample.wayline.dao; |
|
||||
|
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
||||
import org.dromara.sample.wayline.model.entity.WaylineJobEntity; |
|
||||
|
|
||||
/** |
|
||||
* @author sean |
|
||||
* @version 1.1 |
|
||||
* @date 2022/6/1 |
|
||||
*/ |
|
||||
public interface IWaylineJobMapper extends BaseMapper<WaylineJobEntity> { |
|
||||
} |
|
@ -0,0 +1,13 @@ |
|||||
|
package org.dromara.sample.wayline.mapper; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; |
||||
|
import org.dromara.sample.wayline.model.entity.WaylineFileEntity; |
||||
|
|
||||
|
/** |
||||
|
* @author sean |
||||
|
* @version 0.3 |
||||
|
* @date 2021/12/22 |
||||
|
*/ |
||||
|
public interface IWaylineFileMapper extends BaseMapperPlus<WaylineFileEntity,WaylineFileEntity> { |
||||
|
} |
@ -0,0 +1,14 @@ |
|||||
|
package org.dromara.sample.wayline.mapper; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; |
||||
|
import org.dromara.sample.wayline.model.entity.WaylineFileEntity; |
||||
|
import org.dromara.sample.wayline.model.entity.WaylineJobEntity; |
||||
|
|
||||
|
/** |
||||
|
* @author sean |
||||
|
* @version 1.1 |
||||
|
* @date 2022/6/1 |
||||
|
*/ |
||||
|
public interface IWaylineJobMapper extends BaseMapperPlus<WaylineJobEntity, WaylineFileEntity> { |
||||
|
} |
Loading…
Reference in new issue