更新电子围栏

master
ZhiShuo_Lou 2023-11-21 21:58:50 +08:00
parent e01c0e66dd
commit f7e908d3e4
5 changed files with 12 additions and 44 deletions

View File

@ -18,7 +18,7 @@ import java.util.Date;
/** /**
* *
* *
* @Author Lou-Zs * @author Lou-Zs
* @Date 2023/11/20 19:41 * @Date 2023/11/20 19:41
**/ **/
@Data @Data

View File

@ -1,43 +0,0 @@
package com.god.base.server.common.domain;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
*
*/
@NoArgsConstructor
@AllArgsConstructor
@Data
@Builder
@TableName("t_fence")
public class Fence {
/**
* id
*/
private String fenceId;
/**
*
*/
private String fenceAddress;
/**
*
*/
private String labelId;
/**
*
*/
private String createTime;
/**
*
*/
private String updateTime;
/**
*
*/
private String createBy;
}

View File

@ -23,6 +23,7 @@ import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletRequest;
/** /**
* base * base
* @author Lou-Zs
*/ */
@RestController @RestController
@RequestMapping("/baseFence") @RequestMapping("/baseFence")

View File

@ -12,6 +12,11 @@ import com.god.common.core.web.page.TableDataInfo;
* @Version 1.0 * @Version 1.0
* @Description TODO * @Description TODO
**/ **/
/**
*
* @author Lou-Zs
*/
public interface FenceService extends IService<Fence> { public interface FenceService extends IService<Fence> {

View File

@ -23,6 +23,11 @@ import java.io.Serializable;
* @Version 1.0 * @Version 1.0
* @Description TODO * @Description TODO
**/ **/
/**
*
* @author Lou-Zs
*/
@Service @Service
@Log4j2 @Log4j2
public class FenceServiceImpl extends ServiceImpl<FenceMapper , Fence> implements FenceService { public class FenceServiceImpl extends ServiceImpl<FenceMapper , Fence> implements FenceService {