| | |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.sql.Timestamp; |
| | | import java.time.LocalDate; |
| | | |
| | | /** |
| | | * Mpipeline |
| | |
| | | @TableName("bs.m_pipeline") |
| | | @EqualsAndHashCode(callSuper = false) |
| | | public class MpipelineEntity extends BaseGeoEntity { |
| | | private static final long serialVersionUID = 488103974837858240L; |
| | | private static final long serialVersionUID = 576425296057213696L; |
| | | |
| | | private String pipename; |
| | | |
| | |
| | | |
| | | private String projname; |
| | | |
| | | private String startdate; |
| | | private LocalDate startdate; |
| | | |
| | | private String producdate; |
| | | private LocalDate producdate; |
| | | |
| | | private String belongs; |
| | | |
| | |
| | | this.projname = projname; |
| | | } |
| | | |
| | | public String getStartdate() { |
| | | public LocalDate getStartdate() { |
| | | return startdate; |
| | | } |
| | | |
| | | public void setStartdate(String startdate) { |
| | | public void setStartdate(LocalDate startdate) { |
| | | this.startdate = startdate; |
| | | } |
| | | |
| | | public String getProducdate() { |
| | | public LocalDate getProducdate() { |
| | | return producdate; |
| | | } |
| | | |
| | | public void setProducdate(String producdate) { |
| | | public void setProducdate(LocalDate producdate) { |
| | | this.producdate = producdate; |
| | | } |
| | | |