update
This commit is contained in:
@@ -3,5 +3,5 @@ package com.cool.store.mapper;
|
|||||||
import com.cool.store.entity.LineAuditInfoDO;
|
import com.cool.store.entity.LineAuditInfoDO;
|
||||||
import tk.mybatis.mapper.common.Mapper;
|
import tk.mybatis.mapper.common.Mapper;
|
||||||
|
|
||||||
public interface LineAuditInfoMapper extends Mapper<LineAuditInfoDO> {
|
public interface XfsgLineAuditInfoMapper extends Mapper<LineAuditInfoDO> {
|
||||||
}
|
}
|
||||||
@@ -3,6 +3,7 @@
|
|||||||
<mapper namespace="com.cool.store.mapper.LineCalendarsEventMapper">
|
<mapper namespace="com.cool.store.mapper.LineCalendarsEventMapper">
|
||||||
<resultMap id="BaseResultMap" type="com.cool.store.entity.LineCalendarsEventDO">
|
<resultMap id="BaseResultMap" type="com.cool.store.entity.LineCalendarsEventDO">
|
||||||
<id column="id" jdbcType="BIGINT" property="id" />
|
<id column="id" jdbcType="BIGINT" property="id" />
|
||||||
|
<result column="region_id" jdbcType="BIGINT" property="regionId" />
|
||||||
<result column="line_id" jdbcType="BIGINT" property="lineId" />
|
<result column="line_id" jdbcType="BIGINT" property="lineId" />
|
||||||
<result column="partner_id" jdbcType="VARCHAR" property="partnerId" />
|
<result column="partner_id" jdbcType="VARCHAR" property="partnerId" />
|
||||||
<result column="event_title" jdbcType="VARCHAR" property="eventTitle" />
|
<result column="event_title" jdbcType="VARCHAR" property="eventTitle" />
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||||
<mapper namespace="com.cool.store.mapper.LineAuditInfoMapper">
|
<mapper namespace="com.cool.store.mapper.XfsgLineAuditInfoMapper">
|
||||||
<resultMap id="BaseResultMap" type="com.cool.store.entity.LineAuditInfoDO">
|
<resultMap id="BaseResultMap" type="com.cool.store.entity.LineAuditInfoDO">
|
||||||
<id column="id" jdbcType="BIGINT" property="id" />
|
<id column="id" jdbcType="BIGINT" property="id" />
|
||||||
<result column="partner_id" jdbcType="VARCHAR" property="partnerId" />
|
<result column="partner_id" jdbcType="VARCHAR" property="partnerId" />
|
||||||
@@ -9,6 +9,12 @@ public class LineCalendarsEventDO {
|
|||||||
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 区域ID
|
||||||
|
*/
|
||||||
|
@Column(name = "region_id")
|
||||||
|
private Long regionId;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* line_info.id
|
* line_info.id
|
||||||
*/
|
*/
|
||||||
@@ -81,6 +87,24 @@ public class LineCalendarsEventDO {
|
|||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取区域ID
|
||||||
|
*
|
||||||
|
* @return region_id - 区域ID
|
||||||
|
*/
|
||||||
|
public Long getRegionId() {
|
||||||
|
return regionId;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置区域ID
|
||||||
|
*
|
||||||
|
* @param regionId 区域ID
|
||||||
|
*/
|
||||||
|
public void setRegionId(Long regionId) {
|
||||||
|
this.regionId = regionId;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取line_info.id
|
* 获取line_info.id
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user