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