fix(domain): 修正价格历史表名映射错误

- 将MatPriceHistory实体的表名从mat_mat_price_history更正为mat_price_history
- 确保实体类与数据库表结构保持一致
This commit is contained in:
2026-01-30 17:03:15 +08:00
parent f64db505d9
commit 316d13479d

View File

@@ -16,7 +16,7 @@ import com.gear.common.core.domain.BaseEntity;
*/
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("mat_mat_price_history")
@TableName("mat_price_history")
public class MatPriceHistory extends BaseEntity {
private static final long serialVersionUID=1L;