
13 changed files with 63 additions and 67 deletions
@ -1,17 +0,0 @@ |
|||||
package com.yxt.supervise.crm.api.userproject; |
|
||||
|
|
||||
import io.swagger.annotations.Api; |
|
||||
import org.springframework.cloud.openfeign.FeignClient; |
|
||||
|
|
||||
|
|
||||
/** |
|
||||
* @author feikefei |
|
||||
* @create 2023-09-07-9:06 |
|
||||
*/ |
|
||||
@Api(tags = "用户项目表") |
|
||||
@FeignClient( |
|
||||
contextId = "supervise-crm-UserProject", |
|
||||
name = "supervise-crm", |
|
||||
path = "userproject") |
|
||||
public interface UserProjectFeign { |
|
||||
} |
|
@ -0,0 +1,18 @@ |
|||||
|
package com.yxt.supervise.system.sysuser; |
||||
|
|
||||
|
import com.yxt.common.core.vo.Vo; |
||||
|
import io.swagger.annotations.ApiModel; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @author wangpengfei |
||||
|
* @date 2023/4/25 9:29 |
||||
|
*/ |
||||
|
@ApiModel(value = "项目信息 视图数据对象", description = "项目信息 视图数据对象") |
||||
|
@Data |
||||
|
public class ProjectInformationVo implements Vo { |
||||
|
private String sid; |
||||
|
//项目名称
|
||||
|
private String entryName; |
||||
|
} |
@ -1,18 +0,0 @@ |
|||||
package com.yxt.supervise.feign.crm.userproject; |
|
||||
|
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
|
||||
import com.yxt.common.core.domain.EntityWithId; |
|
||||
import lombok.Data; |
|
||||
|
|
||||
/** |
|
||||
* @author feikefei |
|
||||
* @create 2023-09-07-9:11 |
|
||||
*/ |
|
||||
@Data |
|
||||
@TableName("user_project") |
|
||||
public class UserProject extends EntityWithId{ |
|
||||
private String sid; |
|
||||
private String projectSid; |
|
||||
private String userSid; |
|
||||
private String userType; |
|
||||
} |
|
Loading…
Reference in new issue