接口注解完善
							parent
							
								
									b82c4c558b
								
							
						
					
					
						commit
						6e1daab505
					
				| @ -1,16 +1,25 @@ | ||||
| package com.glxp.api.req.auth; | ||||
| 
 | ||||
| import io.swagger.annotations.ApiModel; | ||||
| import io.swagger.annotations.ApiModelProperty; | ||||
| import lombok.Data; | ||||
| 
 | ||||
| /** | ||||
|  * 角色的提交保存表单 | ||||
|  */ | ||||
| @ApiModel(value = "角色的提交保存表单") | ||||
| @Data | ||||
| public class AuthRoleSaveRequest { | ||||
|     @ApiModelProperty(value = "主键") | ||||
|     private Long id; | ||||
|     @ApiModelProperty(value = "名称") | ||||
|     private String name; | ||||
|     @ApiModelProperty(value = "pid") | ||||
|     private Long pid; | ||||
|     @ApiModelProperty(value = "状态") | ||||
|     private Long status; | ||||
|     @ApiModelProperty(value = "备注") | ||||
|     private String remark; | ||||
|     @ApiModelProperty(value = "列表顺序") | ||||
|     private Long listorder; | ||||
| } | ||||
|  | ||||
| @ -1,40 +1,61 @@ | ||||
| package com.glxp.api.req.auth; | ||||
| 
 | ||||
| import com.glxp.api.util.page.ListPageRequest; | ||||
| import io.swagger.annotations.ApiModel; | ||||
| import io.swagger.annotations.ApiModelProperty; | ||||
| import lombok.Data; | ||||
| 
 | ||||
| import java.util.List; | ||||
| 
 | ||||
| @ApiModel("管理员的提交保存表单请求类") | ||||
| @Data | ||||
| public class BussinessTypeFilterRequest extends ListPageRequest { | ||||
| 
 | ||||
|     @ApiModelProperty(value = "启用") | ||||
|     private Boolean enable; | ||||
|     @ApiModelProperty(value = "行动") | ||||
|     private String action; | ||||
|     @ApiModelProperty(value = "第三个动作") | ||||
|     private String thirdAction; | ||||
|     @ApiModelProperty(value = "名称") | ||||
|     private String name; | ||||
|     @ApiModelProperty(value = "主要操作") | ||||
|     private String mainAction; | ||||
|     @ApiModelProperty(value = "已启用") | ||||
|     private Boolean enabled; | ||||
|     @ApiModelProperty(value = "检查启用状态") | ||||
|     private Boolean checkEnable; | ||||
|     @ApiModelProperty(value = "预付款类型") | ||||
|     private Boolean advanceType; | ||||
|     @ApiModelProperty(value = "类型") | ||||
|     private String type; | ||||
|     @ApiModelProperty(value = "索引") | ||||
|     private Integer index; | ||||
| 
 | ||||
|     @ApiModelProperty(value = "运费特殊政策使用状态") | ||||
|     private Boolean spUse; | ||||
|     @ApiModelProperty(value = "本地操作") | ||||
|     private String localAction; | ||||
|     @ApiModelProperty(value = "安全检查启用状态") | ||||
|     private Boolean secCheckEnable; | ||||
| 
 | ||||
|     @ApiModelProperty(value = "过滤操作") | ||||
|     private String filterAction; | ||||
|     @ApiModelProperty(value = "用户ID") | ||||
|     private Integer userId; | ||||
| 
 | ||||
|     @ApiModelProperty(value = "库存组织代码") | ||||
|     private String locInvCode; | ||||
|     @ApiModelProperty(value = "子库存代码") | ||||
|     private String locSubInvCode; | ||||
|     @ApiModelProperty(value = "最后更新时间") | ||||
|     private String lastUpdateTime; | ||||
|     @ApiModelProperty(value = "编码") | ||||
|     private String code; | ||||
|     @ApiModelProperty(value = "ID列表") | ||||
|     private String ids; | ||||
|     @ApiModelProperty(value = "操作列表") | ||||
|     private List<String> actionList; | ||||
|     @ApiModelProperty(value = "预入库") | ||||
|     private Boolean preIn; | ||||
| 
 | ||||
|     @ApiModelProperty(value = "有效派送") | ||||
|     private boolean vailDispatch; | ||||
|     @ApiModelProperty(value = "有效团购") | ||||
|     private int vailGroupBuy; | ||||
| 
 | ||||
| } | ||||
|  | ||||
| @ -1,33 +1,40 @@ | ||||
| package com.glxp.api.req.auth; | ||||
| 
 | ||||
| import com.glxp.api.util.page.ListPageRequest; | ||||
| import io.swagger.annotations.ApiModel; | ||||
| import io.swagger.annotations.ApiModelProperty; | ||||
| import lombok.Data; | ||||
| import lombok.EqualsAndHashCode; | ||||
| 
 | ||||
| import java.util.List; | ||||
| 
 | ||||
| @ApiModel("过滤认证用户请求") | ||||
| @EqualsAndHashCode(callSuper = true) | ||||
| @Data | ||||
| public class FilterAuthUserRequest extends ListPageRequest { | ||||
| 
 | ||||
|     @ApiModelProperty(value = "用户名称") | ||||
|     private String userName; | ||||
| 
 | ||||
|     @ApiModelProperty(value = "用户标识") | ||||
|     private Integer userFlag; | ||||
| 
 | ||||
|     @ApiModelProperty(value = "角色ID") | ||||
|     private Long roleId; | ||||
| 
 | ||||
|     @ApiModelProperty(value = "标识符") | ||||
|     private List<Long> ids; | ||||
| 
 | ||||
|     @ApiModelProperty(value = "最后更新时间") | ||||
|     private String lastUpdateTime; | ||||
|     @ApiModelProperty(value = "员工姓名") | ||||
|     private String employeeName; | ||||
| 
 | ||||
|     //用户名 !=
 | ||||
|     @ApiModelProperty(value = "网络设备用户名") | ||||
|     private String neUserName; | ||||
| 
 | ||||
|     /** | ||||
|      * 部门编码 | ||||
|      */ | ||||
|     @ApiModelProperty(value = "部门编码") | ||||
|     private String deptCode; | ||||
|     @ApiModelProperty(value = "仓库号") | ||||
|     private String invCode;     //仓库号
 | ||||
|     @ApiModelProperty(value = "密钥") | ||||
|     private String key; | ||||
| } | ||||
|  | ||||
| @ -1,15 +1,23 @@ | ||||
| package com.glxp.api.req.auth; | ||||
| 
 | ||||
| import com.glxp.api.util.page.ListPageRequest; | ||||
| import io.swagger.annotations.ApiModel; | ||||
| import io.swagger.annotations.ApiModelProperty; | ||||
| import lombok.Data; | ||||
| 
 | ||||
| @ApiModel(value = "权限规则的提交保存表单") | ||||
| @Data | ||||
| public class FilterDeptRequest extends ListPageRequest { | ||||
|     @ApiModelProperty(value = "编码") | ||||
|     private String code; | ||||
|     @ApiModelProperty(value = "名称") | ||||
|     private String name; | ||||
|     @ApiModelProperty(value = "标志") | ||||
|     private Integer flag; | ||||
|     @ApiModelProperty(value = "最后更新时间") | ||||
|     private String lastUpdateTime; | ||||
|     @ApiModelProperty(value = "父级ID") | ||||
|     private Integer parentId; | ||||
|     @ApiModelProperty(value = "主键") | ||||
|     private Integer id; | ||||
| 
 | ||||
| } | ||||
|  | ||||
| @ -1,12 +1,19 @@ | ||||
| package com.glxp.api.req.auth; | ||||
| 
 | ||||
| import com.glxp.api.util.page.ListPageRequest; | ||||
| import io.swagger.annotations.ApiModel; | ||||
| import io.swagger.annotations.ApiModelProperty; | ||||
| import lombok.Data; | ||||
| 
 | ||||
| @Data | ||||
| @ApiModel(value = "过滤无效业务类型请求") | ||||
| public class FilterInvBusTypeRequest extends ListPageRequest { | ||||
|     @ApiModelProperty(value = "最后更新时间") | ||||
|     private String lastUpdateTime; | ||||
|     @ApiModelProperty(value = "主键") | ||||
|     private Integer id; | ||||
|     @ApiModelProperty(value = "编码") | ||||
|     private String code; | ||||
|     @ApiModelProperty(value = "行动") | ||||
|     private String action; | ||||
| } | ||||
|  | ||||
| @ -1,17 +1,21 @@ | ||||
| package com.glxp.api.req.auth; | ||||
| 
 | ||||
| import com.glxp.api.util.page.ListPageRequest; | ||||
| import io.swagger.annotations.ApiModel; | ||||
| import io.swagger.annotations.ApiModelProperty; | ||||
| import lombok.Data; | ||||
| 
 | ||||
| import java.util.List; | ||||
| 
 | ||||
| @ApiModel(value = "过滤无效业务用户请求") | ||||
| @Data | ||||
| public class FilterInvBusUserRequest extends ListPageRequest { | ||||
| 
 | ||||
| 
 | ||||
|     @ApiModelProperty(value = "用户id") | ||||
|     private String userId; | ||||
|     @ApiModelProperty(value = "子库存编码") | ||||
|     private String subInvCode; | ||||
|     @ApiModelProperty(value = "供应链动作") | ||||
|     private String scAction; | ||||
| 
 | ||||
|     @ApiModelProperty(value = "已选编码") | ||||
|     private List<String> selectedCodes; | ||||
| } | ||||
|  | ||||
| @ -1,24 +1,37 @@ | ||||
| package com.glxp.api.req.auth; | ||||
| 
 | ||||
| import com.glxp.api.util.page.ListPageRequest; | ||||
| import io.swagger.annotations.ApiModel; | ||||
| import io.swagger.annotations.ApiModelProperty; | ||||
| import lombok.Data; | ||||
| 
 | ||||
| @ApiModel(value = "过滤库存子仓库请求") | ||||
| @Data | ||||
| public class FilterInvSubWarehouseRequest extends ListPageRequest { | ||||
| 
 | ||||
|     @ApiModelProperty(value = "主键") | ||||
|     private String id; | ||||
|     @ApiModelProperty(value = "编码") | ||||
|     private String code; | ||||
|     @ApiModelProperty(value = "名称") | ||||
|     private String name; | ||||
|     @ApiModelProperty(value = "父级ID") | ||||
|     private String parentId; | ||||
|     @ApiModelProperty(value = "默认库存") | ||||
|     private Boolean defaultInv; | ||||
|     @ApiModelProperty(value = "高级筛选类型") | ||||
|     private Integer advanceType; | ||||
| 
 | ||||
|     @ApiModelProperty(value = "第三方ID") | ||||
|     public String thirdId; | ||||
|     @ApiModelProperty(value = "第三方ID1") | ||||
|     public String thirdId1; | ||||
|     @ApiModelProperty(value = "第三方ID2") | ||||
|     public String thirdId2; | ||||
|     @ApiModelProperty(value = "第三方ID3") | ||||
|     public String thirdId3; | ||||
|     @ApiModelProperty(value = "第三方ID4") | ||||
|     public String thirdId4; | ||||
| 
 | ||||
|     @ApiModelProperty(value = "密钥") | ||||
|     private String key; | ||||
|     @ApiModelProperty(value = "高级筛选类型") | ||||
|     private Integer filterAdvanceType; | ||||
| } | ||||
|  | ||||
| @ -1,15 +1,22 @@ | ||||
| package com.glxp.api.req.auth; | ||||
| 
 | ||||
| import com.glxp.api.util.page.ListPageRequest; | ||||
| import io.swagger.annotations.ApiModel; | ||||
| import io.swagger.annotations.ApiModelProperty; | ||||
| import lombok.Data; | ||||
| 
 | ||||
| @ApiModel(value = "过滤库存用户请求") | ||||
| @Data | ||||
| public class FilterInvUserRequest extends ListPageRequest { | ||||
| 
 | ||||
|     @ApiModelProperty(value = "主键") | ||||
|     private Long id; | ||||
|     @ApiModelProperty(value = "编码") | ||||
|     private String code; | ||||
|     @ApiModelProperty(value = "用户id") | ||||
|     private Long userid; | ||||
|     @ApiModelProperty(value = "用户名称") | ||||
|     private String username; | ||||
|     @ApiModelProperty(value = "是否为主管") | ||||
|     private Boolean isDirector; | ||||
|     @ApiModelProperty(value = "最后更新时间") | ||||
|     private String lastUpdateTime; | ||||
| } | ||||
|  | ||||
| @ -1,14 +1,17 @@ | ||||
| package com.glxp.api.req.auth; | ||||
| 
 | ||||
| import com.glxp.api.util.page.ListPageRequest; | ||||
| import io.swagger.annotations.ApiModel; | ||||
| import io.swagger.annotations.ApiModelProperty; | ||||
| import lombok.Data; | ||||
| 
 | ||||
| import java.util.List; | ||||
| 
 | ||||
| @ApiModel(value = "过滤未选择用户请求") | ||||
| @Data | ||||
| public class FilterNoSelectUserRequest extends ListPageRequest { | ||||
| 
 | ||||
| 
 | ||||
|     @ApiModelProperty(value = "用户id") | ||||
|     List<Long> userIds; | ||||
|     @ApiModelProperty(value = "部门ID") | ||||
|     private Long deptId; | ||||
| } | ||||
|  | ||||
| @ -1,17 +1,25 @@ | ||||
| package com.glxp.api.req.auth; | ||||
| 
 | ||||
| import com.glxp.api.util.page.ListPageRequest; | ||||
| import io.swagger.annotations.ApiModel; | ||||
| import io.swagger.annotations.ApiModelProperty; | ||||
| import lombok.Data; | ||||
| 
 | ||||
| @ApiModel(value = "过滤角色请求") | ||||
| @Data | ||||
| public class FilterRoleRequest extends ListPageRequest { | ||||
| 
 | ||||
|     @ApiModelProperty(value = "角色id") | ||||
|     private Long roleId; | ||||
|     @ApiModelProperty(value = "角色名称") | ||||
|     private String roleName; | ||||
|     @ApiModelProperty(value = "角色键值") | ||||
|     private String roleKey; | ||||
|     @ApiModelProperty(value = "状态") | ||||
|     private String status; | ||||
|     @ApiModelProperty(value = "不等于角色名称") | ||||
|     private String neRoleName; | ||||
|     @ApiModelProperty(value = "不等于角色键值") | ||||
|     private String neRoleKey; | ||||
|     @ApiModelProperty(value = "不等于角色ID") | ||||
|     private Long neRoleId; | ||||
| 
 | ||||
| } | ||||
|  | ||||
| @ -1,18 +1,23 @@ | ||||
| package com.glxp.api.req.auth; | ||||
| 
 | ||||
| import com.glxp.api.util.page.ListPageRequest; | ||||
| import io.swagger.annotations.ApiModel; | ||||
| import io.swagger.annotations.ApiModelProperty; | ||||
| import lombok.Data; | ||||
| 
 | ||||
| @ApiModel(value = "过滤系统历史状态请求") | ||||
| @Data | ||||
| public class FilterSysHisStatusRequest extends ListPageRequest { | ||||
| 
 | ||||
|     @ApiModelProperty(value = "主键") | ||||
|     private Integer id; | ||||
|     @ApiModelProperty(value = "类型") | ||||
|     private String type; | ||||
|     @ApiModelProperty(value = "类型名称") | ||||
|     private String typeName; | ||||
|     @ApiModelProperty(value = "父级id") | ||||
|     private Integer parentId; | ||||
|     @ApiModelProperty(value = "状态") | ||||
|     private Integer status; | ||||
| 
 | ||||
| 
 | ||||
|     @ApiModelProperty(value = "部门ID") | ||||
|     private Integer deptId; | ||||
| 
 | ||||
| } | ||||
|  | ||||
| @ -1,12 +1,15 @@ | ||||
| package com.glxp.api.req.auth; | ||||
| 
 | ||||
| import com.glxp.api.util.page.ListPageRequest; | ||||
| import io.swagger.annotations.ApiModel; | ||||
| import io.swagger.annotations.ApiModelProperty; | ||||
| import lombok.Data; | ||||
| 
 | ||||
| @ApiModel(value = "过滤用户角色请求") | ||||
| @Data | ||||
| public class FilterUserRoleRequest extends ListPageRequest { | ||||
| 
 | ||||
| 
 | ||||
|     @ApiModelProperty(value = "用户id") | ||||
|     private Long userId; | ||||
|     @ApiModelProperty(value = "角色id") | ||||
|     private Long roleId; | ||||
| } | ||||
|  | ||||
| @ -1,16 +1,24 @@ | ||||
| package com.glxp.api.req.basic; | ||||
| 
 | ||||
| import io.swagger.annotations.ApiModel; | ||||
| import io.swagger.annotations.ApiModelProperty; | ||||
| import lombok.Data; | ||||
| 
 | ||||
| import java.util.List; | ||||
| 
 | ||||
| @ApiModel("基本公司导出请求") | ||||
| @Data | ||||
| public class BasicCorpsExportRequest { | ||||
|     @ApiModelProperty(value = "ID列表") | ||||
|     List<Long> ids; | ||||
|     @ApiModelProperty(value = "主键") | ||||
|     private Integer id; | ||||
|     @ApiModelProperty(value = "密钥") | ||||
|     private String key; | ||||
|     @ApiModelProperty(value = "单位ID") | ||||
|     private String unitId; | ||||
|     @ApiModelProperty(value = "名称") | ||||
|     private String name; | ||||
|     @ApiModelProperty(value = "第三方系统") | ||||
|     private String thirdSys; | ||||
| 
 | ||||
| } | ||||
|  | ||||
| @ -1,23 +1,35 @@ | ||||
| package com.glxp.api.req.basic; | ||||
| 
 | ||||
| import com.glxp.api.util.page.ListPageRequest; | ||||
| import io.swagger.annotations.ApiModel; | ||||
| import io.swagger.annotations.ApiModelProperty; | ||||
| import lombok.Data; | ||||
| 
 | ||||
| import java.util.Date; | ||||
| 
 | ||||
| @ApiModel("基本委托记录请求") | ||||
| @Data | ||||
| public class BasicEntrustRecRequest extends ListPageRequest { | ||||
| 
 | ||||
|     @ApiModelProperty(value = "主键") | ||||
|     private Integer id; | ||||
|     @ApiModelProperty(value = "行为") | ||||
|     private String action; | ||||
|     @ApiModelProperty(value = "委托编号") | ||||
|     private String entrustInv; | ||||
|     @ApiModelProperty(value = "委托部门") | ||||
|     private String entrustDept; | ||||
|     @ApiModelProperty(value = "委托用户") | ||||
|     private Long entrustUser; | ||||
|     @ApiModelProperty(value = "用户id") | ||||
|     private String userId; | ||||
|     @ApiModelProperty(value = "更新时间") | ||||
|     private Date updateTime; | ||||
|     @ApiModelProperty(value = "当前持仓编号") | ||||
|     private String curInv; | ||||
|     @ApiModelProperty(value = "当前持仓部门") | ||||
|     private String curDept; | ||||
|     @ApiModelProperty(value = "最后更新时间") | ||||
|     private String lastUpdateTime; | ||||
|     @ApiModelProperty(value = "名称") | ||||
|     private String name; | ||||
| 
 | ||||
| } | ||||
|  | ||||
| @ -1,10 +1,12 @@ | ||||
| package com.glxp.api.req.basic; | ||||
| 
 | ||||
| import io.swagger.annotations.ApiModel; | ||||
| import io.swagger.annotations.ApiModelProperty; | ||||
| import lombok.Data; | ||||
| 
 | ||||
| @ApiModel("号码用户请求") | ||||
| @Data | ||||
| public class BusNoUserRequest { | ||||
| 
 | ||||
|     @ApiModelProperty(value = "当前操作") | ||||
|     private String curAction; | ||||
| 
 | ||||
| } | ||||
|  | ||||
| @ -1,41 +1,49 @@ | ||||
| package com.glxp.api.req.basic; | ||||
| 
 | ||||
| import com.glxp.api.util.page.ListPageRequest; | ||||
| import io.swagger.annotations.ApiModel; | ||||
| import io.swagger.annotations.ApiModelProperty; | ||||
| import lombok.Data; | ||||
| 
 | ||||
| /** | ||||
|  * 补单设置接口查询参数 | ||||
|  */ | ||||
| @ApiModel("补单设置接口查询参数") | ||||
| @Data | ||||
| public class FilterBusTypePreRequest extends ListPageRequest { | ||||
| 
 | ||||
|     /** | ||||
|      * 单据类型编码 | ||||
|      */ | ||||
|     @ApiModelProperty(value = "单据类型编码") | ||||
|     private String action; | ||||
| 
 | ||||
|     /** | ||||
|      * 第三方单据类型编码 | ||||
|      */ | ||||
|     @ApiModelProperty(value = "第三方单据类型编码") | ||||
|     private String thirdAction; | ||||
| 
 | ||||
|     @ApiModelProperty(value = "类型") | ||||
|     private String type; | ||||
| 
 | ||||
|     /** | ||||
|      * 原单据类型代码 | ||||
|      */ | ||||
|     @ApiModelProperty(value = "原单据类型代码") | ||||
|     private String originAction; | ||||
| 
 | ||||
|     /** | ||||
|      * 原单据类型名称 | ||||
|      */ | ||||
|     @ApiModelProperty(value = "原单据类型名称") | ||||
|     private String originName; | ||||
| 
 | ||||
|     /** | ||||
|      * 目标单据类型名称 | ||||
|      */ | ||||
|     @ApiModelProperty(value = "目标单据类型名称") | ||||
|     private String targetName; | ||||
| 
 | ||||
|     @ApiModelProperty(value = "名称") | ||||
|     private String name; | ||||
| 
 | ||||
| } | ||||
|  | ||||
| @ -1,16 +1,24 @@ | ||||
| package com.glxp.api.req.basic; | ||||
| 
 | ||||
| import com.glxp.api.util.page.ListPageRequest; | ||||
| import io.swagger.annotations.ApiModel; | ||||
| import io.swagger.annotations.ApiModelProperty; | ||||
| import lombok.Data; | ||||
| 
 | ||||
| @ApiModel("公司产品相关性过滤请求") | ||||
| @Data | ||||
| public class FilterCompanyProductRelevanceRequest extends ListPageRequest { | ||||
| 
 | ||||
|     @ApiModelProperty(value = "客户ID") | ||||
|     private Long customerId; | ||||
|     @ApiModelProperty(value = "产品ID") | ||||
|     private Long productId; | ||||
|     @ApiModelProperty(value = "产品UUID") | ||||
|     private String productUuid; | ||||
|     @ApiModelProperty(value = "udi外键") | ||||
|     private String udiRlIdFk; | ||||
|     private String unitFk; | ||||
|     @ApiModelProperty(value = "单位外键") | ||||
|         private String unitFk; | ||||
|     @ApiModelProperty(value = "最后更新时间") | ||||
|     private String lastUpdateTime; | ||||
|     @ApiModelProperty(value = "密钥") | ||||
|     private String key; | ||||
| } | ||||
|  | ||||
					Loading…
					
					
				
		Reference in New Issue