yun-zuoyi
宋军超 5 years ago
commit b3032ca8e8

@ -5,14 +5,13 @@
<parent> <parent>
<artifactId>i3plus-pojo</artifactId> <artifactId>i3plus-pojo</artifactId>
<groupId>i3plus.pojo</groupId> <groupId>i3plus.pojo</groupId>
<version>1.0-SNAPSHOT</version> <version>1.0-DEV-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath> <relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>i3plus-pojo-andon</artifactId> <artifactId>i3plus-pojo-andon</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0-${profileActive}-SNAPSHOT</version>
<dependencies> <dependencies>
<dependency> <dependency>

@ -5,14 +5,13 @@
<parent> <parent>
<artifactId>i3plus-pojo</artifactId> <artifactId>i3plus-pojo</artifactId>
<groupId>i3plus.pojo</groupId> <groupId>i3plus.pojo</groupId>
<version>1.0-SNAPSHOT</version> <version>1.0-DEV-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath> <relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>i3plus-pojo-aps</artifactId> <artifactId>i3plus-pojo-aps</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0-${profileActive}-SNAPSHOT</version>
<dependencies> <dependencies>
<dependency> <dependency>

@ -5,14 +5,13 @@
<parent> <parent>
<artifactId>i3plus-pojo</artifactId> <artifactId>i3plus-pojo</artifactId>
<groupId>i3plus.pojo</groupId> <groupId>i3plus.pojo</groupId>
<version>1.0-SNAPSHOT</version> <version>1.0-DEV-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath> <relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>i3plus-pojo-base</artifactId> <artifactId>i3plus-pojo-base</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0-${profileActive}-SNAPSHOT</version>
<dependencies> <dependencies>
<dependency> <dependency>

@ -4600,4 +4600,49 @@ public class MesEnumUtil {
return tmp; return tmp;
} }
} }
/**
* 使
*/
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum MES_CONTAINER_STATUS {
FREE(10, "空闲"),
OCCUPY(20, "占用");
private int value;
private String description;
MES_CONTAINER_STATUS(int value, String description) {
this.value = value;
this.description = description;
}
public int getValue() {
return value;
}
public String getDescription() {
return description;
}
public static String valueOfDescription(int val) {
String tmp = null;
for (int i = 0; i < values().length; i++) {
if (values()[i].value == val) {
tmp = values()[i].description;
}
}
return tmp;
}
public static String valueOfDescription2(int val) {
String tmp = null;
for (int i = 0; i < values().length; i++) {
if (values()[i].value == val) {
tmp = values()[i].description.equals("已审批") ? "审批" : values()[i].description;
}
}
return tmp;
}
}
} }

@ -3269,4 +3269,49 @@ public class MesPcnEnumUtil {
return tmp; return tmp;
} }
} }
/**
* 使
*/
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum MES_CONTAINER_STATUS {
FREE(10, "空闲"),
OCCUPY(20, "占用");
private int value;
private String description;
MES_CONTAINER_STATUS(int value, String description) {
this.value = value;
this.description = description;
}
public int getValue() {
return value;
}
public String getDescription() {
return description;
}
public static String valueOfDescription(int val) {
String tmp = null;
for (int i = 0; i < values().length; i++) {
if (values()[i].value == val) {
tmp = values()[i].description;
}
}
return tmp;
}
public static String valueOfDescription2(int val) {
String tmp = null;
for (int i = 0; i < values().length; i++) {
if (values()[i].value == val) {
tmp = values()[i].description.equals("已审批") ? "审批" : values()[i].description;
}
}
return tmp;
}
}
} }

@ -5,14 +5,13 @@
<parent> <parent>
<artifactId>i3plus-pojo</artifactId> <artifactId>i3plus-pojo</artifactId>
<groupId>i3plus.pojo</groupId> <groupId>i3plus.pojo</groupId>
<version>1.0-SNAPSHOT</version> <version>1.0-DEV-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath> <relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>i3plus-pojo-form</artifactId> <artifactId>i3plus-pojo-form</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0-${profileActive}-SNAPSHOT</version>
<dependencies> <dependencies>

@ -5,14 +5,13 @@
<parent> <parent>
<artifactId>i3plus-pojo</artifactId> <artifactId>i3plus-pojo</artifactId>
<groupId>i3plus.pojo</groupId> <groupId>i3plus.pojo</groupId>
<version>1.0-SNAPSHOT</version> <version>1.0-DEV-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath> <relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>i3plus-pojo-hardswitch</artifactId> <artifactId>i3plus-pojo-hardswitch</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0-${profileActive}-SNAPSHOT</version>
<profiles> <profiles>
<profile> <profile>

@ -5,14 +5,13 @@
<parent> <parent>
<artifactId>i3plus-pojo</artifactId> <artifactId>i3plus-pojo</artifactId>
<groupId>i3plus.pojo</groupId> <groupId>i3plus.pojo</groupId>
<version>1.0-SNAPSHOT</version> <version>1.0-DEV-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath> <relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>i3plus-pojo-jobflow</artifactId> <artifactId>i3plus-pojo-jobflow</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0-${profileActive}-SNAPSHOT</version>
<profiles> <profiles>
<profile> <profile>

@ -5,14 +5,13 @@
<parent> <parent>
<artifactId>i3plus-pojo</artifactId> <artifactId>i3plus-pojo</artifactId>
<groupId>i3plus.pojo</groupId> <groupId>i3plus.pojo</groupId>
<version>1.0-SNAPSHOT</version> <version>1.0-DEV-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath> <relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>i3plus-pojo-lac</artifactId> <artifactId>i3plus-pojo-lac</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0-${profileActive}-SNAPSHOT</version>
<dependencies> <dependencies>
<dependency> <dependency>

@ -5,14 +5,13 @@
<parent> <parent>
<artifactId>i3plus-pojo</artifactId> <artifactId>i3plus-pojo</artifactId>
<groupId>i3plus.pojo</groupId> <groupId>i3plus.pojo</groupId>
<version>1.0-SNAPSHOT</version> <version>1.0-DEV-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath> <relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>i3plus-pojo-mes-pcn</artifactId> <artifactId>i3plus-pojo-mes-pcn</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0-${profileActive}-SNAPSHOT</version>
<dependencies> <dependencies>
<dependency> <dependency>

@ -5,14 +5,13 @@
<parent> <parent>
<artifactId>i3plus-pojo</artifactId> <artifactId>i3plus-pojo</artifactId>
<groupId>i3plus.pojo</groupId> <groupId>i3plus.pojo</groupId>
<version>1.0-SNAPSHOT</version> <version>1.0-DEV-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath> <relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>i3plus-pojo-mes</artifactId> <artifactId>i3plus-pojo-mes</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0-${profileActive}-SNAPSHOT</version>
<dependencies> <dependencies>
<dependency> <dependency>

@ -106,6 +106,10 @@ public class MesPackage extends BaseBean implements Serializable {
@ApiParam("打印缓存id") @ApiParam("打印缓存id")
private String printId; private String printId;
@Column(name = "CT_NO")
@ApiParam("容器编号")
private String ctNo;
public MesPackage() { public MesPackage() {
} }

@ -132,4 +132,10 @@ public class MesPlc extends BaseBean implements Serializable {
@Column(name = "TOOLING_CODE ") @Column(name = "TOOLING_CODE ")
@ApiParam("工装代码") @ApiParam("工装代码")
private String toolingCode; private String toolingCode;
@Transient
@ApiParam("标签数据")
private String tableValue;
} }

@ -5,14 +5,13 @@
<parent> <parent>
<artifactId>i3plus-pojo</artifactId> <artifactId>i3plus-pojo</artifactId>
<groupId>i3plus.pojo</groupId> <groupId>i3plus.pojo</groupId>
<version>1.0-SNAPSHOT</version> <version>1.0-DEV-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath> <relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>i3plus-pojo-model</artifactId> <artifactId>i3plus-pojo-model</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0-${profileActive}-SNAPSHOT</version>
<dependencies> <dependencies>
<dependency> <dependency>

@ -5,14 +5,13 @@
<parent> <parent>
<artifactId>i3plus-pojo</artifactId> <artifactId>i3plus-pojo</artifactId>
<groupId>i3plus.pojo</groupId> <groupId>i3plus.pojo</groupId>
<version>1.0-SNAPSHOT</version> <version>1.0-DEV-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath> <relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>i3plus-pojo-platform</artifactId> <artifactId>i3plus-pojo-platform</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0-${profileActive}-SNAPSHOT</version>
<dependencies> <dependencies>
<dependency> <dependency>

@ -5,14 +5,13 @@
<parent> <parent>
<artifactId>i3plus-pojo</artifactId> <artifactId>i3plus-pojo</artifactId>
<groupId>i3plus.pojo</groupId> <groupId>i3plus.pojo</groupId>
<version>1.0-SNAPSHOT</version> <version>1.0-DEV-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath> <relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>i3plus-pojo-ptl</artifactId> <artifactId>i3plus-pojo-ptl</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0-${profileActive}-SNAPSHOT</version>
<dependencies> <dependencies>
<dependency> <dependency>

@ -5,14 +5,13 @@
<parent> <parent>
<artifactId>i3plus-pojo</artifactId> <artifactId>i3plus-pojo</artifactId>
<groupId>i3plus.pojo</groupId> <groupId>i3plus.pojo</groupId>
<version>1.0-SNAPSHOT</version> <version>1.0-DEV-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath> <relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>i3plus-pojo-report</artifactId> <artifactId>i3plus-pojo-report</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0-${profileActive}-SNAPSHOT</version>
<dependencies> <dependencies>

@ -5,14 +5,13 @@
<parent> <parent>
<artifactId>i3plus-pojo</artifactId> <artifactId>i3plus-pojo</artifactId>
<groupId>i3plus.pojo</groupId> <groupId>i3plus.pojo</groupId>
<version>1.0-SNAPSHOT</version> <version>1.0-DEV-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath> <relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>i3plus-pojo-softswitch</artifactId> <artifactId>i3plus-pojo-softswitch</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0-${profileActive}-SNAPSHOT</version>
<dependencies> <dependencies>

@ -5,14 +5,13 @@
<parent> <parent>
<artifactId>i3plus-pojo</artifactId> <artifactId>i3plus-pojo</artifactId>
<groupId>i3plus.pojo</groupId> <groupId>i3plus.pojo</groupId>
<version>1.0-SNAPSHOT</version> <version>1.0-DEV-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath> <relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>i3plus-pojo-sweb</artifactId> <artifactId>i3plus-pojo-sweb</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0-${profileActive}-SNAPSHOT</version>
<dependencies> <dependencies>
<dependency> <dependency>

@ -5,14 +5,13 @@
<parent> <parent>
<artifactId>i3plus-pojo</artifactId> <artifactId>i3plus-pojo</artifactId>
<groupId>i3plus.pojo</groupId> <groupId>i3plus.pojo</groupId>
<version>1.0-SNAPSHOT</version> <version>1.0-DEV-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath> <relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>i3plus-pojo-wms</artifactId> <artifactId>i3plus-pojo-wms</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0-${profileActive}-SNAPSHOT</version>
<dependencies> <dependencies>
<dependency> <dependency>

@ -28,10 +28,10 @@ import java.math.BigDecimal;
@Index(columnList = "ORDER_NO"), @Index(columnList = "ORDER_NO"),
@Index(columnList = "PART_NO"), @Index(columnList = "PART_NO"),
@Index(columnList = "ITEM_STATUS") @Index(columnList = "ITEM_STATUS")
}, uniqueConstraints = {@UniqueConstraint(columnNames = {"REF_SRC", "ITEM", "TRANS_TYPE_CODE_RDD"})}) })
// uniqueConstraints = {@UniqueConstraint(columnNames = {"REF_SRC", "ITEM", "TRANS_TYPE_CODE_RDD"})}
@Api("作业任务明细信息") @Api("作业任务明细信息")
public class WmsTaskDetails extends BaseBean { public class WmsTaskDetails extends BaseBean {
private static final long serialVersionUID = 2938720878619662102L; private static final long serialVersionUID = 2938720878619662102L;
@Column(name = "ORDER_NO") @Column(name = "ORDER_NO")
@ApiParam(value = "单号") @ApiParam(value = "单号")

@ -4,6 +4,7 @@ import io.swagger.annotations.Api;
import io.swagger.annotations.ApiParam; import io.swagger.annotations.ApiParam;
import lombok.AllArgsConstructor; import lombok.AllArgsConstructor;
import lombok.Data; import lombok.Data;
import lombok.NoArgsConstructor;
import org.hibernate.annotations.ColumnDefault; import org.hibernate.annotations.ColumnDefault;
/** /**
@ -14,6 +15,7 @@ import org.hibernate.annotations.ColumnDefault;
* @Modify: * @Modify:
**/ **/
@Data @Data
@NoArgsConstructor
@AllArgsConstructor @AllArgsConstructor
@Api("移库单数据模型") @Api("移库单数据模型")
public class WmsDocMovementModel { public class WmsDocMovementModel {
@ -43,7 +45,7 @@ public class WmsDocMovementModel {
private String partGroupNo; private String partGroupNo;
@ApiParam("订单状态") @ApiParam("订单状态")
private String orderStatus; private Integer orderStatus;
@ApiParam(value = "优先级", example = "1") @ApiParam(value = "优先级", example = "1")
public Integer priority; public Integer priority;

@ -5,14 +5,13 @@
<parent> <parent>
<artifactId>i3plus-pojo</artifactId> <artifactId>i3plus-pojo</artifactId>
<groupId>i3plus.pojo</groupId> <groupId>i3plus.pojo</groupId>
<version>1.0-SNAPSHOT</version> <version>1.0-DEV-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath> <relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>i3plus-pojo-workflow</artifactId> <artifactId>i3plus-pojo-workflow</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0-${profileActive}-SNAPSHOT</version>
<profiles> <profiles>
<profile> <profile>

@ -15,7 +15,7 @@
<groupId>i3plus.pojo</groupId> <groupId>i3plus.pojo</groupId>
<artifactId>i3plus-pojo</artifactId> <artifactId>i3plus-pojo</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>
<version>1.0-${profileActive}-SNAPSHOT</version> <version>1.0-DEV-SNAPSHOT</version>
<modules> <modules>
<module>modules/i3plus-pojo-base</module> <module>modules/i3plus-pojo-base</module>
<module>modules/i3plus-pojo-platform</module> <module>modules/i3plus-pojo-platform</module>

Loading…
Cancel
Save