goods同步

This commit is contained in:
2026-05-30 08:26:47 +08:00
parent 246c5a7080
commit dbf408c51f
20 changed files with 1233 additions and 32 deletions

View File

@@ -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")