|
|
@ -13,6 +13,7 @@ import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
|
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
import javax.persistence.Column;
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
|
|
|
import javax.persistence.Index;
|
|
|
|
import javax.persistence.Table;
|
|
|
|
import javax.persistence.Table;
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
|
|
|
|
|
|
|
@ -28,7 +29,11 @@ import javax.persistence.Transient;
|
|
|
|
@DynamicInsert
|
|
|
|
@DynamicInsert
|
|
|
|
@DynamicUpdate
|
|
|
|
@DynamicUpdate
|
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
|
|
@Table(name = "WMS_DOC_CS_DETAILS")
|
|
|
|
@Table(name = "WMS_DOC_CS_DETAILS", indexes = {
|
|
|
|
|
|
|
|
@Index(columnList = "ORDER_NO"),
|
|
|
|
|
|
|
|
@Index(columnList = "VENDOR_NO"),
|
|
|
|
|
|
|
|
@Index(columnList = "SN")
|
|
|
|
|
|
|
|
})
|
|
|
|
@Api("盘点单冻结信息")
|
|
|
|
@Api("盘点单冻结信息")
|
|
|
|
public class WmsCSOrderDetails extends BaseBean {
|
|
|
|
public class WmsCSOrderDetails extends BaseBean {
|
|
|
|
private static final long serialVersionUID = 1054153436116196360L;
|
|
|
|
private static final long serialVersionUID = 1054153436116196360L;
|
|
|
|