修改活动编号为2
This commit is contained in:
parent
316e4f0d25
commit
a9bd1965de
@ -66,7 +66,6 @@ public class ShiroConfig {
|
||||
filterMap.put("/dtlg/luck", "anon");
|
||||
filterMap.put("/dtlg/look", "anon");
|
||||
filterMap.put("/luck/getLuckById", "anon");
|
||||
filterMap.put("/thirdAppConfig/syn", "anon");
|
||||
filterMap.put("/luck/updateLuck", "anon");
|
||||
filterMap.put("/**", "oauth2");
|
||||
shiroFilter.setFilterChainDefinitionMap(filterMap);
|
||||
|
||||
@ -67,7 +67,7 @@ public class DingtalkBusiness {
|
||||
// @DataSource(name = DataSourceNames.FOUR)
|
||||
public void getDingTalkepartmentsIntoData(String appid) {
|
||||
|
||||
/*List<StaffEntity> staffEntityList = staffDao.selectByRang("535");//飞书数据更新为钉钉数据
|
||||
/*List<StaffEntity> staffEntityList = staffDao.selectByRang("1004");//飞书数据更新为钉钉数据
|
||||
for (StaffEntity staff:staffEntityList
|
||||
) {
|
||||
List<StaffEntity> list = staffDao.selectByName(staff.getName());
|
||||
|
||||
@ -39,7 +39,7 @@ public class DingTalkLoginController {
|
||||
public R luck(@RequestBody String body){
|
||||
log.info("luck{}", body);
|
||||
JSONObject json = JSONObject.parseObject(body);
|
||||
Luck luck = luckService.selectLuckById(1L);//默认第一个活动
|
||||
Luck luck = luckService.selectLuckById(2L);//默认第一个活动
|
||||
if(luck.getStopTime().getTime() > System.currentTimeMillis()){
|
||||
return dingtalkBusiness.luck(json.getString("code"), appid, luck.getId());
|
||||
}
|
||||
|
||||
@ -3,9 +3,9 @@ spring:
|
||||
type: com.alibaba.druid.pool.DruidDataSource
|
||||
druid:
|
||||
driver-class-name: com.mysql.cj.jdbc.Driver
|
||||
url: jdbc:mysql://172.16.157.238:3306/lz_management?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai
|
||||
username: ldd_biz
|
||||
password: Hello1234
|
||||
url: jdbc:mysql://rm-bp1xhc66ruz72t68p.mysql.rds.aliyuncs.com:3306/lz_manger?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai
|
||||
username: lz_manger
|
||||
password: N8zfBwhOC
|
||||
initial-size: 10
|
||||
max-active: 100
|
||||
min-idle: 10
|
||||
|
||||
@ -92,11 +92,11 @@
|
||||
</select>
|
||||
|
||||
|
||||
<insert id="addDepartment" useGeneratedKeys="true" keyProperty="id">
|
||||
<insert id="addDepartment" useGeneratedKeys="true" keyProperty="id" parameterType="DepartmentsEntity">
|
||||
INSERT INTO
|
||||
lz_departments(department_id,department_parent_id,member_count,department_name,chat_id,leader_employee_id,leader_open_id,status)
|
||||
VALUES
|
||||
(#{department.departmentId},#{department.departmentParentId},#{department.memberCount},#{department.departmentName},#{department.chatId},#{department.leaderEmployeeId},#{department.leaderOpenId},#{department.status})
|
||||
(#{departments.departmentId},#{departments.departmentParentId},#{departments.memberCount},#{departments.departmentName},#{departments.chatId},#{departments.leaderEmployeeId},#{departments.leaderOpenId},#{departments.status})
|
||||
|
||||
</insert>
|
||||
|
||||
|
||||
@ -34,7 +34,7 @@
|
||||
</select>
|
||||
|
||||
<select id="getRelateByStaffIdAndDepartmentId" resultType="java.lang.String">
|
||||
select department_id from lz_departments_staff_relate where is_delete=0 and staff_id = #{staffId} and department_id=#{departmentId}
|
||||
select department_id from lz_departments_staff_relate where is_delete=0 and staff_id = #{staffId} and department_id=#{departmentId} limit 1
|
||||
</select>
|
||||
|
||||
|
||||
|
||||
@ -171,7 +171,7 @@
|
||||
select * from lz_staff where is_delete=0 and open_id = #{openId}
|
||||
</select>
|
||||
|
||||
<update id="updateStaff">
|
||||
<update id="updateStaff" parameterType="StaffEntity">
|
||||
UPDATE lz_staff
|
||||
<set>
|
||||
update_time = now(),
|
||||
@ -182,7 +182,7 @@
|
||||
gender = #{gender,jdbcType=INTEGER},
|
||||
</if>
|
||||
<if test="birthday != null and birthday != '' ">
|
||||
birthday = #{birthday,jdbcType=DATETIME},
|
||||
birthday = #{birthday,jdbcType=TIMESTAMP},
|
||||
</if>
|
||||
<if test="maritalStatus != null">
|
||||
marital_status = #{maritalStatus,jdbcType=INTEGER},
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user