1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- package com.miniframe.model.system;
- import com.miniframe.system.MiniserviceBaseModel;
- import java.io.Serializable;
- import javax.persistence.*;
- @Table(name = "d_way")
- public class DWay extends MiniserviceBaseModel implements Serializable {
- @Id
- private Integer id;
- private String name;
- private String code;
- private static final long serialVersionUID = 1L;
- /**
- * @return id
- */
- public Integer getId() {
- return id;
- }
- /**
- * @param id
- */
- public void setId(Integer id) {
- this.id = id;
- }
- /**
- * @return name
- */
- public String getName() {
- return name;
- }
- /**
- * @param name
- */
- public void setName(String name) {
- this.name = name == null ? null : name.trim();
- }
- /**
- * @return code
- */
- public String getCode() {
- return code;
- }
- /**
- * @param code
- */
- public void setCode(String code) {
- this.code = code == null ? null : code.trim();
- }
- }
|