登录授权、发货通知

yun-zuoyi
yihang.lv 6 years ago
parent 9802d19b2e
commit 556072dbaa

@ -80,7 +80,7 @@ public class SwebPurchaseOrderSn extends BaseBean {
@Column(name = "CHECK_CODE")
@ApiParam(value = "检验编号")
public String CHECK_CODE;
public String checkCode;
@Column(name = "STOVE_NO")
@ApiParam(value = "炉批号")

@ -0,0 +1,31 @@
package cn.estsh.i3plus.pojo.sweb.modelbean;
import io.swagger.annotations.ApiParam;
import lombok.AllArgsConstructor;
import lombok.Data;
import java.io.Serializable;
/**
* @Description :
* @Reference :
* @Author : jack.lv
* @CreateDate : 2019-04-12 13:13
* @Modify:
**/
@Data
@AllArgsConstructor
public class SwebLoginUserModel implements Serializable {
@ApiParam(value = "用户名")
private String userName;
@ApiParam(value = "密码")
private String password;
@ApiParam(value = "获取图片密码的唯一凭证")
private String uniqueId;
@ApiParam(value = "ip地址")
private String ip;
}

@ -20,7 +20,7 @@ public class SwebPOForPubListResultItemModel extends BaseBean {
@Column(name = "ORDER_NO")
@ApiParam("单据号")
public String orderNo;
private String orderNo;
@Column(name = "PART_NO")
@ApiParam(value = "零件号")

@ -18,8 +18,8 @@ import java.util.List;
public class SwebPOForPubListResultModel extends BaseBean {
@ApiParam(value = "拆分请求时间数量列表", example = "1")
public List<String> reqTimeList;
private List<String> reqTimeList;
@ApiParam(value = "分页列表", example = "1")
public ListPager<SwebPOForPubListResultItemModel> pageList;
private ListPager<SwebPOForPubListResultItemModel> pageList;
}

Loading…
Cancel
Save