2021-11-04 05:17:03 +00:00
|
|
|
package cn.palmte.work.model;
|
|
|
|
|
|
|
|
|
|
import javax.persistence.*;
|
|
|
|
|
|
|
|
|
|
/**
|
2021-11-04 08:05:36 +00:00
|
|
|
* 资金计划明细表
|
2021-11-04 05:17:03 +00:00
|
|
|
*/
|
|
|
|
|
@Entity
|
2021-11-04 08:05:36 +00:00
|
|
|
@Table(name = "project_budget_plan_detail")
|
2021-12-08 09:14:30 +00:00
|
|
|
public class ProjectBudgetPlanDetail extends ProjectBudgetPlanDetailBase{
|
2021-11-04 05:17:03 +00:00
|
|
|
}
|