| | |
| | | <result column="status" property="status" /> |
| | | <result column="practical_train_count" property="practicalTrainCount" /> |
| | | <result column="other_count" property="otherCount" /> |
| | | <result column="mission_state" property="missionState" /> |
| | | <result column="create_time" property="createTime" /> |
| | | <result column="update_time" property="updateTime" /> |
| | | <result column="create_by" property="createBy" /> |
| | |
| | | |
| | | <!-- 通用查询结果列 --> |
| | | <sql id="Base_Column_List"> |
| | | id, nick_name, phone, account, password, team_name, team_id, status, practical_train_count, other_count, create_time, update_time, create_by, update_by, disabled |
| | | id, nick_name, phone, account, password, team_name, team_id, status, practical_train_count, other_count, |
| | | mission_state,create_time, update_time, create_by, update_by, disabled |
| | | </sql> |
| | | <select id="pageList" resultType="com.ruoyi.system.vo.TAppUserPageVo"> |
| | | SELECT |
| | | t1.id, t1.nick_name, t1.phone, t1.account, t1.password, t1.team_name, t1.team_id, t1.status, |
| | | t1.practical_train_count, |
| | | t1.practical_train_count,t1.mission_state, |
| | | t1.other_count, t1.create_time, t1.update_time, t1.create_by, t1.update_by, t1.disabled,t2.team_name |
| | | FROM |
| | | t_app_user t1 left join t_division_team t2 on t1.team_id = t2.id |
| | |
| | | <select id="pageAuditList" resultType="com.ruoyi.system.vo.TAppUserPageVo"> |
| | | SELECT |
| | | t1.id, t1.nick_name, t1.phone, t1.account, t1.password, t1.team_name, t1.team_id, t1.status, |
| | | t1.practical_train_count, |
| | | t1.practical_train_count,t1.mission_state, |
| | | t1.other_count, t1.create_time, t1.update_time, t1.create_by, t1.update_by, t1.disabled,t2.team_name |
| | | FROM |
| | | t_app_user t1 left join t_division_team t2 on t1.team_id = t2.id |