更新微信公众号联系我们页面

This commit is contained in:
tangfutang 2023-08-19 14:47:22 +08:00
parent fcbe21e3f5
commit c4c2c82b84
3 changed files with 47 additions and 28 deletions

View File

@ -7,7 +7,7 @@
ASObjectModel doTemp = new ASObjectModel(sTempletNo);
ASObjectWindow dwTemp = new ASObjectWindow(CurPage, doTemp,request);
dwTemp.Style = "2";//freeform
dwTemp.genHTMLObjectWindow(id);
dwTemp.genHTMLObjectWindow("1");
String sButtons[][] = {
{"true","","Button","保存","保存所有修改","saveRecord()","","","","btn_icon_save"}
};

View File

@ -345,6 +345,21 @@
</managerProperties>
</manager>
</class>
<class name="LB_CONTACT_US" label="" keyAttributes="ID">
<attributes>
<attribute name="ID" label="主键" type="STRING" length="32"/>
<attribute name="name" label="公司名称" type="STRING" length="500"/>
<attribute name="e_mail" label="公司邮箱" type="STRING" length="500"/>
<attribute name="tel" label="联系电话" type="STRING" length="500"/>
<attribute name="work_time" label="工作时间" type="STRING" length="500"/>
</attributes>
<manager>
<managerProperties>
<property name="table" value="lb_contact_us" />
<property name="createKey" value="true" />
</managerProperties>
</manager>
</class>
<class name="LM_PRODUCT_DISTRIBUTOR_GROUP" label="" keyAttributes="id">
<attributes>
<attribute name="id" label="主键" type="STRING" length="40"/>

View File

@ -1,32 +1,36 @@
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";
/**
* - JBO命名常量类<br><br>
* Note: This file is generated by ADE tools, <em>dont</em> modify it.<br>
}
*/
public interface LB_CONTACT_US{
/**
* <br><br>
* 代表本类映射的BizObjectClass
*/
public static final String CLASS_NAME = "jbo.com.tenwa.entity.comm.own.LB_CONTACT_US";
/**
* 主键 STRING(32)<br>
*/
public static final String ID = "ID";
/**
* 公司名称 STRING(500)<br>
*/
public static final String name = "name";
/**
* 公司邮箱 STRING(500)<br>
*/
public static final String e_mail = "e_mail";
/**
* 联系电话 STRING(500)<br>
*/
public static final String tel = "tel";
/**
* 工作时间 STRING(500)<br>
*/
public static final String work_time = "work_time";
}