From 670616fca159bc799ae3e5048eb2b55711e1d972 Mon Sep 17 00:00:00 2001 From: Zen Huifer Date: Sun, 4 Feb 2024 11:15:17 +0800 Subject: [PATCH] write a line into test.file --- ...s9deec1de-c30b-11ee-b7f9-acde48001122.java | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 docs/spring/cs9deec1de-c30b-11ee-b7f9-acde48001122.java diff --git a/docs/spring/cs9deec1de-c30b-11ee-b7f9-acde48001122.java b/docs/spring/cs9deec1de-c30b-11ee-b7f9-acde48001122.java new file mode 100644 index 00000000..be4ef0bd --- /dev/null +++ b/docs/spring/cs9deec1de-c30b-11ee-b7f9-acde48001122.java @@ -0,0 +1,40 @@ +/** + * Copyright 2009-2015 the original author or authors. + *

+ * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + *

+ * http://www.apache.org/licenses/LICENSE-2.0 + *

+ * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.ibatis.submitted.uuid_test; + +import java.util.UUID; + +public class User { + + private UUID id; + private String name; + + public UUID getId() { + return id; + } + + public void setId(UUID id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } +}