goods同步
This commit is contained in:
@@ -19,9 +19,12 @@ public class LbOrderRow implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 业务主键为订单 id,由调用方传入,非数据库自增 */
|
||||
/**
|
||||
* 订单 id(与 {@link #tenantId} 组成复合主键 {@code (tenant_id, id)}),由调用方传入,非数据库自增。
|
||||
* MyBatis-Plus 仅标注 {@code id} 为 {@link TableId},按主键定位记录时需同时使用租户 id。
|
||||
*/
|
||||
@TableId(value = "id", type = IdType.INPUT)
|
||||
@Schema(description = "订单 id")
|
||||
@Schema(description = "订单 id(复合主键之一,须与 tenantId 一起使用)")
|
||||
private Long id;
|
||||
|
||||
@TableField("old_id")
|
||||
|
||||
Reference in New Issue
Block a user