From 4e445d18ad87f0473cec713a03bad905f57f6af5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=A3=E5=9C=A3=E5=8D=8E?= <752718920@qq.com> Date: Mon, 24 Oct 2022 09:21:47 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E6=BC=8F=E6=8F=90=E4=BA=A4=E7=9A=84?= =?UTF-8?q?=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/jsh/erp/datasource/entities/RoleEx.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 jshERP-boot/src/main/java/com/jsh/erp/datasource/entities/RoleEx.java diff --git a/jshERP-boot/src/main/java/com/jsh/erp/datasource/entities/RoleEx.java b/jshERP-boot/src/main/java/com/jsh/erp/datasource/entities/RoleEx.java new file mode 100644 index 00000000..845846b5 --- /dev/null +++ b/jshERP-boot/src/main/java/com/jsh/erp/datasource/entities/RoleEx.java @@ -0,0 +1,14 @@ +package com.jsh.erp.datasource.entities; + +public class RoleEx extends Role{ + + private String priceLimitStr; + + public String getPriceLimitStr() { + return priceLimitStr; + } + + public void setPriceLimitStr(String priceLimitStr) { + this.priceLimitStr = priceLimitStr; + } +} \ No newline at end of file