| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.activerecord.Model; |
| | | import java.io.Serializable; |
| | | import java.time.LocalDate; |
| | | |
| | | /** |
| | | * 值班表(NewsDuty)表实体类 |
| | | * |
| | | * @author makejava |
| | | * @since 2022-11-16 16:52:30 |
| | | * @since 2022-11-17 11:12:41
|
| | | */ |
| | | @SuppressWarnings("serial") |
| | | public class NewsDuty extends Model<NewsDuty> { |
| | |
| | | //值班职位 |
| | | private String jobTitle; |
| | | //创建时间 |
| | | private LocalDate createTime; |
| | | private Date createTime;
|
| | | //值班时间 |
| | | private LocalDate dutyTime; |
| | | private Date dutyTime;
|
| | | |
| | | |
| | | public Integer getId() { |
| | |
| | | this.jobTitle = jobTitle; |
| | | } |
| | | |
| | | public LocalDate getCreateTime() { |
| | | public Date getCreateTime() {
|
| | | return createTime; |
| | | } |
| | | |
| | | public void setCreateTime(LocalDate createTime) { |
| | | public void setCreateTime(Date createTime) {
|
| | | this.createTime = createTime; |
| | | } |
| | | |
| | | public LocalDate getDutyTime() { |
| | | public Date getDutyTime() {
|
| | | return dutyTime; |
| | | } |
| | | |
| | | public void setDutyTime(LocalDate dutyTime) { |
| | | public void setDutyTime(Date dutyTime) {
|
| | | this.dutyTime = dutyTime; |
| | | } |
| | | |