| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.usoftchina.saas.document.dto;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- @ApiModel(value = "Vendor", description = "供应商资料")
- public class VendorDTO implements Serializable{
- @ApiModelProperty(value = "ID")
- private long ve_id;
- @ApiModelProperty(value = "供应商编号")
- private String ve_code;
- @ApiModelProperty(value = "供应商名称")
- private String ve_name;
- @ApiModelProperty(value = "供应商类型")
- private String ve_type;
- @ApiModelProperty(value = "状态")
- private String ve_status;
- public long getVe_id() {
- return ve_id;
- }
- public void setVe_id(long ve_id) {
- this.ve_id = ve_id;
- }
- public String getVe_code() {
- return ve_code;
- }
- public void setVe_code(String ve_code) {
- this.ve_code = ve_code;
- }
- public String getVe_name() {
- return ve_name;
- }
- public void setVe_name(String ve_name) {
- this.ve_name = ve_name;
- }
- public String getVe_type() {
- return ve_type;
- }
- public void setVe_type(String ve_type) {
- this.ve_type = ve_type;
- }
- public String getVe_status() {
- return ve_status;
- }
- public void setVe_status(String ve_status) {
- this.ve_status = ve_status;
- }
- }
|