mirror of
https://github.com/weizhiqiang1995/erp-pro.git
synced 2025-02-28 01:14:01 +08:00
feat:解决belongId问题
This commit is contained in:
parent
65446f27f4
commit
35ad10e385
2 changed files with 2 additions and 2 deletions
|
@ -60,7 +60,7 @@ public class Question extends OperatorUserInfo {
|
|||
private Integer answerInputWidth;
|
||||
|
||||
@TableField("belong_id")
|
||||
@ApiModelProperty(value = "所属问卷或题库", required = "required")
|
||||
@ApiModelProperty(value = "所属问卷或题库")
|
||||
private String belongId;
|
||||
|
||||
@TableField("cell_count")
|
||||
|
|
|
@ -20,7 +20,7 @@ import org.springframework.transaction.annotation.EnableTransactionManagement;
|
|||
@EnableTransactionManagement//启注解事务管理,等同于xml配置方式的 <tx:annotation-driven />
|
||||
@ComponentScan(basePackages = {"com.skyeye"})
|
||||
@EnableDiscoveryClient // 开启服务发现
|
||||
@EnableFeignClients
|
||||
@EnableFeignClients // 开启Feign客户端,实现负载均衡
|
||||
public class SkySchoolApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
|
Loading…
Reference in a new issue