Merge remote-tracking branch 'remotes/origin/dev' into test
commit
e61669dd98
@ -0,0 +1,47 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.sweb.modelbean;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import javax.persistence.Column;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 待发布订单列表输出模型
|
||||||
|
* @Reference :
|
||||||
|
* @Author : jack.lv
|
||||||
|
* @CreateDate : 2019-04-02 13:13
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
public class SwebPOForPubListResultItemModel extends BaseBean {
|
||||||
|
|
||||||
|
@Column(name = "ORDER_NO")
|
||||||
|
@ApiParam("单据号")
|
||||||
|
public String orderNo;
|
||||||
|
|
||||||
|
@Column(name = "PART_NO")
|
||||||
|
@ApiParam(value = "零件号")
|
||||||
|
private String partNo;
|
||||||
|
|
||||||
|
@Column(name = "PART_NAME")
|
||||||
|
@ApiParam(value = "零件名称")
|
||||||
|
private String partName;
|
||||||
|
|
||||||
|
@ApiParam(value = "单位")
|
||||||
|
@Column(name = "UNIT")
|
||||||
|
private String unit;
|
||||||
|
|
||||||
|
@ApiParam(value = "订单状态", example = "1")
|
||||||
|
@Column(name = "ITEM_STATUS")
|
||||||
|
private Integer itemStatus;
|
||||||
|
|
||||||
|
@ApiParam(value = "订单类型", example = "1")
|
||||||
|
@Column(name = "ORDER_TYPE")
|
||||||
|
public Integer orderType;
|
||||||
|
|
||||||
|
@ApiParam(value = "时间数量列表", example = "1")
|
||||||
|
public List<Map<String,Double>> timeList;
|
||||||
|
}
|
Loading…
Reference in New Issue