添加企业信息模板

This commit is contained in:
zzk 2023-08-18 14:21:22 +08:00
parent f88839cda1
commit 43801069ee

View File

@ -0,0 +1,32 @@
package jbo.com.tenwa.entity.comm.own;
import java.lang.String;
public interface LB_CONTACT_US {
/**
* <br><br>
* 代表本类映射的BizObjectClass
*/
public static final String CLASS_NAME = "jbo.com.tenwa.entity.comm.own.LB_CONTACT_US";
/**
* id STRING(32)<br>
*/
public static final String id = "id";
/**
* 公司名称 STRING(100)<br>
*/
public static final String name = "name";
/**
* 电子邮箱 STRING(20)<br>
*/
public static final String e_mail = "e_mail";
/**
* 客户电话 STRING(20)<br>
*/
public static final String tel = "tel";
/**
* 工作时间 STRING(20)<br>
*/
public static final String work_time = "work_time";
}