| | |
| | | import jakarta.persistence.Entity; |
| | | import jakarta.persistence.Transient; |
| | | import lombok.Data; |
| | | import org.hibernate.annotations.Table; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | import org.hibernate.annotations.Comment; |
| | | |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | import jakarta.persistence.Table; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | **/ |
| | | @Data |
| | | @Entity |
| | | @Table(appliesTo = "production_plan", comment = "排产计划") |
| | | @Table(name = "production_plan") |
| | | @Comment("排产计划") |
| | | public class ProductionPlan extends BaseModel<BusinessCustomer> { |
| | | |
| | | @Schema(description = "所属合同编号") |