🎉 add project structure

This commit is contained in:
fuhouyin 2024-01-31 15:03:54 +08:00
parent 69f91944eb
commit a6aeeebdca
16 changed files with 64 additions and 0 deletions

View File

@ -0,0 +1,4 @@
package com.darkness.api.mapper.demo;
public class DemoMapper {
}

View File

@ -0,0 +1,4 @@
package com.darkness.api.mapper.test;
public interface TestMapper {
}

View File

@ -0,0 +1,4 @@
package com.darkness.api.repository.demo;
public interface DemoRepository {
}

View File

@ -0,0 +1,4 @@
package com.darkness.api.repository.test;
public interface TestRepository {
}

View File

@ -0,0 +1,4 @@
package com.darkness.api.service.demo;
public interface DemoService {
}

View File

@ -0,0 +1,4 @@
package com.darkness.api.service.test;
public interface TestService {
}

View File

@ -0,0 +1,4 @@
package com.darkness.engine.demo;
public class DemoController {
}

View File

@ -0,0 +1,4 @@
package com.darkness.engine.demo;
public class DemoServiceImpl {
}

View File

@ -0,0 +1,4 @@
package com.darkness.engine.test;
public class TestController {
}

View File

@ -0,0 +1,4 @@
package com.darkness.engine.test;
public class TestServiceImpl {
}

View File

@ -0,0 +1,4 @@
package com.darkness.pojo.cmd.demo;
public class DemoCommand {
}

View File

@ -0,0 +1,4 @@
package com.darkness.pojo.cmd.test;
public class TestCommand {
}

View File

@ -0,0 +1,4 @@
package com.darkness.pojo.dto.demo;
public class DemoDto {
}

View File

@ -0,0 +1,4 @@
package com.darkness.pojo.dto.test;
public class TestDto {
}

View File

@ -0,0 +1,4 @@
package com.darkness.pojo.response.demo;
public class DemoRsp {
}

View File

@ -0,0 +1,4 @@
package com.darkness.pojo.response.test;
public class TestRsp {
}