|
|
@ -12,10 +12,7 @@ import org.hibernate.annotations.ColumnDefault;
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
|
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
import javax.persistence.*;
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* @Description :物料实体
|
|
|
|
* @Description :物料实体
|
|
|
@ -29,7 +26,9 @@ import javax.persistence.Transient;
|
|
|
|
@DynamicInsert
|
|
|
|
@DynamicInsert
|
|
|
|
@DynamicUpdate
|
|
|
|
@DynamicUpdate
|
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
|
|
@Table(name = "WMS_PART")
|
|
|
|
@Table(name = "WMS_PART", indexes = {
|
|
|
|
|
|
|
|
@Index(columnList = "ORGANIZE_CODE")
|
|
|
|
|
|
|
|
})
|
|
|
|
@Api("物料表")
|
|
|
|
@Api("物料表")
|
|
|
|
public class WmsPart extends BaseBean {
|
|
|
|
public class WmsPart extends BaseBean {
|
|
|
|
private static final long serialVersionUID = 4849044986767609346L;
|
|
|
|
private static final long serialVersionUID = 4849044986767609346L;
|
|
|
|