2204-11-20 (团购)

yingxiao
笨蛋 2024-11-20 19:09:56 +08:00
parent 25ca6644f7
commit 0bd4aa8d46
21 changed files with 134 additions and 0 deletions

View File

@ -0,0 +1,17 @@
package com.muyu.marketing.domain.model;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
/**
*
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
@SuperBuilder
public class ActivityTeamInfoListModel {
}

View File

@ -0,0 +1,4 @@
package com.muyu.marketing.domain.req;
public class ActivityTeamInfoListReq {
}

View File

@ -0,0 +1,7 @@
package com.muyu.marketing.controller;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class ActivityTeamInfoController {
}

View File

@ -0,0 +1,7 @@
package com.muyu.marketing.controller;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class ActivityTeamOpenInfoController {
}

View File

@ -0,0 +1,7 @@
package com.muyu.marketing.controller;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class ActivityTeamProductSkuInfoController {
}

View File

@ -0,0 +1,7 @@
package com.muyu.marketing.controller;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class TeamStrategyExemptionController {
}

View File

@ -0,0 +1,7 @@
package com.muyu.marketing.controller;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class TeamStrategyExemptionHundredController {
}

View File

@ -0,0 +1,7 @@
package com.muyu.marketing.controller;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class TeamStrategyExemptionOrdinaryController {
}

View File

@ -0,0 +1,4 @@
package com.muyu.marketing.service;
public interface ActivityTeamInfoService {
}

View File

@ -0,0 +1,4 @@
package com.muyu.marketing.service;
public interface ActivityTeamOpenInfoService {
}

View File

@ -0,0 +1,4 @@
package com.muyu.marketing.service;
public interface ActivityTeamProductSkuInfoService {
}

View File

@ -0,0 +1,4 @@
package com.muyu.marketing.service;
public interface TeamStrategyExemptionHundredService {
}

View File

@ -0,0 +1,4 @@
package com.muyu.marketing.service;
public interface TeamStrategyExemptionOrdinaryService {
}

View File

@ -0,0 +1,4 @@
package com.muyu.marketing.service;
public interface TeamStrategyExemptionService {
}

View File

@ -0,0 +1,7 @@
package com.muyu.marketing.service.impl;
import org.springframework.stereotype.Service;
@Service
public class ActivityTeamInfoServiceImpl {
}

View File

@ -0,0 +1,7 @@
package com.muyu.marketing.service.impl;
import org.springframework.stereotype.Service;
@Service
public class ActivityTeamOpenInfoServiceImpl {
}

View File

@ -0,0 +1,7 @@
package com.muyu.marketing.service.impl;
import org.springframework.stereotype.Service;
@Service
public class ActivityTeamProductSkuInfoServiceImpl {
}

View File

@ -0,0 +1,7 @@
package com.muyu.marketing.service.impl;
import org.springframework.stereotype.Service;
@Service
public class TeamStrategyExemptionHundredServiceImpl {
}

View File

@ -0,0 +1,7 @@
package com.muyu.marketing.service.impl;
import org.springframework.stereotype.Service;
@Service
public class TeamStrategyExemptionOrdinaryServiceImpl {
}

View File

@ -0,0 +1,7 @@
package com.muyu.marketing.service.impl;
import org.springframework.stereotype.Service;
@Service
public class TeamStrategyExemptionServiceImpl {
}

View File

@ -9,8 +9,13 @@
<version>3.6.3</version> <version>3.6.3</version>
</parent> </parent>
<description>
muyu-marketing营销管理
</description>
<artifactId>muyu-marketing</artifactId> <artifactId>muyu-marketing</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>
<modules> <modules>
<module>marketing-common</module> <module>marketing-common</module>
<module>marketing-remote</module> <module>marketing-remote</module>