15 changed files with 319 additions and 53 deletions
@ -0,0 +1,28 @@ |
|||
package com.ccsens.cloudutil.bean.tall.vo; |
|||
|
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
@Data |
|||
public class PluginVo { |
|||
|
|||
@ApiModel |
|||
@Data |
|||
public static class PluginSignField{ |
|||
@ApiModelProperty("变量名") |
|||
private String name; |
|||
@ApiModelProperty("展示名") |
|||
private String description; |
|||
@ApiModelProperty("类型 0文本 1文本框 2单选 3多选") |
|||
private int type; |
|||
@ApiModelProperty("类型值(文本,单选,多选,展示的内容 例:{\"1\":\"男\",\"2\":\"女\"},)") |
|||
private String fieldValue; |
|||
@ApiModelProperty("正则表达式") |
|||
private String format; |
|||
@ApiModelProperty("是否必填") |
|||
private int isRequired; |
|||
@ApiModelProperty("是否支持模糊查询") |
|||
private int isFuzzy; |
|||
} |
|||
} |
@ -0,0 +1,8 @@ |
|||
package com.ccsens.mt.persist.dao; |
|||
|
|||
import com.ccsens.mt.persist.mapper.MtSigninBasicMapper; |
|||
import org.springframework.stereotype.Repository; |
|||
|
|||
@Repository |
|||
public interface MtSigninBasicDao extends MtSigninBasicMapper { |
|||
} |
@ -0,0 +1,8 @@ |
|||
package com.ccsens.mt.persist.dao; |
|||
|
|||
import com.ccsens.mt.persist.mapper.MtSigninOtherMapper; |
|||
import org.springframework.stereotype.Repository; |
|||
|
|||
@Repository |
|||
public interface MtSigninOtherDao extends MtSigninOtherMapper { |
|||
} |
Loading…
Reference in new issue