package com.eksad.masterdata.domain;

import jakarta.persistence.*;

import java.util.Date;

@Entity
@Table(name = "mst_wo")
public class MstWo {
    @Id
    @Column(name = "wo_id")
    private Long woId;

    @Column(name = "nopol")
    private String nopol;

    @Column(name = "create_dt")
    private Date createDt;

    public Long getWoId() {
        return this.woId;
    }

    public void setWoId(Long woId) {
        this.woId = woId;
    }

    public String getNopol() {
        return this.nopol;
    }

    public void setNopol(String nopol) {
        this.nopol = nopol;
    }

    public Date getCreateDt() {
        return this.createDt;
    }

    public void setCreateDt(Date createDt) {
        this.createDt = createDt;
    }
}