## 产品库存同步实体添加SEQ;
This commit is contained in:
parent
e07a7d0f6b
commit
9c933a84b5
|
@ -1,5 +1,6 @@
|
||||||
package com.hzs.common.domain.sale.order;
|
package com.hzs.common.domain.sale.order;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.KeySequence;
|
||||||
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||||||
|
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
@ -21,6 +22,7 @@ import lombok.experimental.Accessors;
|
||||||
@Data
|
@Data
|
||||||
@EqualsAndHashCode(callSuper = false)
|
@EqualsAndHashCode(callSuper = false)
|
||||||
@Accessors(chain = true)
|
@Accessors(chain = true)
|
||||||
|
@KeySequence("SA_ORDER_SYNC_SEQ")
|
||||||
@TableName("SA_ORDER_SYNC")
|
@TableName("SA_ORDER_SYNC")
|
||||||
public class SaOrderSync implements Serializable {
|
public class SaOrderSync implements Serializable {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue