From 43801069eec74febec9f5215ad83ea2813f3957b Mon Sep 17 00:00:00 2001 From: zzk Date: Fri, 18 Aug 2023 14:21:22 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E4=BC=81=E4=B8=9A=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E6=A8=A1=E6=9D=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../tenwa/entity/comm/own/LB_CONTACT_US.java | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src_jbo/jbo/com/tenwa/entity/comm/own/LB_CONTACT_US.java diff --git a/src_jbo/jbo/com/tenwa/entity/comm/own/LB_CONTACT_US.java b/src_jbo/jbo/com/tenwa/entity/comm/own/LB_CONTACT_US.java new file mode 100644 index 000000000..4b4d951bb --- /dev/null +++ b/src_jbo/jbo/com/tenwa/entity/comm/own/LB_CONTACT_US.java @@ -0,0 +1,32 @@ +package jbo.com.tenwa.entity.comm.own; + +import java.lang.String; +public interface LB_CONTACT_US { + + /** + *

+ * 代表本类映射的BizObjectClass + */ + public static final String CLASS_NAME = "jbo.com.tenwa.entity.comm.own.LB_CONTACT_US"; + /** + * id STRING(32)
+ */ + public static final String id = "id"; + /** + * 公司名称 STRING(100)
+ */ + public static final String name = "name"; + /** + * 电子邮箱 STRING(20)
+ */ + public static final String e_mail = "e_mail"; + /** + * 客户电话 STRING(20)
+ */ + public static final String tel = "tel"; + /** + * 工作时间 STRING(20)
+ */ + public static final String work_time = "work_time"; + +}