1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- package com.qmth.ops.api.vo;
- import com.qmth.ops.biz.domain.OcrSupplier;
- public class OcrSupplierVO {
- private Long id;
- private String name;
- private Long createTime;
- private Long updateTime;
- public OcrSupplierVO(OcrSupplier supplier) {
- this.id = supplier.getId();
- this.name = supplier.getName();
- this.createTime = supplier.getCreateTime();
- this.updateTime = supplier.getUpdateTime();
- }
- public Long getId() {
- return id;
- }
- public void setId(Long id) {
- this.id = id;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public Long getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Long createTime) {
- this.createTime = createTime;
- }
- public Long getUpdateTime() {
- return updateTime;
- }
- public void setUpdateTime(Long updateTime) {
- this.updateTime = updateTime;
- }
- }
|