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