接口列表
parent
07d80e9ac6
commit
1482a2eab8
|
@ -53,10 +53,6 @@ public class Connector {
|
|||
* 购买次数
|
||||
*/
|
||||
private Integer connectorFrequency;
|
||||
/**
|
||||
* 测试地址
|
||||
*/
|
||||
private String connectorAddress;
|
||||
/**
|
||||
* 状态
|
||||
*/
|
||||
|
|
|
@ -1,60 +0,0 @@
|
|||
package com.muyu.domain;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* @Author:chaiyapeng
|
||||
* @Package:com.muyu.domain
|
||||
* @Project:cloud-mart
|
||||
* @name:UserSearch
|
||||
* @Date:2024/8/22 16:55
|
||||
*/
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class UserSearch {
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
private Integer userId;
|
||||
/**
|
||||
* 用户名
|
||||
*/
|
||||
private String userName;
|
||||
/**
|
||||
* 密码
|
||||
*/
|
||||
private String userPwd;
|
||||
/**
|
||||
* 手机号
|
||||
*/
|
||||
private String userPhone;
|
||||
/**
|
||||
* 身份证
|
||||
*/
|
||||
private String userIdentityCard;
|
||||
/**
|
||||
* 邮箱
|
||||
*/
|
||||
private String userMailbox;
|
||||
/**
|
||||
* 余额
|
||||
*/
|
||||
private BigDecimal userBalance;
|
||||
/**
|
||||
* 用户名查询
|
||||
*/
|
||||
private String blur;
|
||||
/**
|
||||
* 当前页
|
||||
*/
|
||||
private Integer pageSum;
|
||||
/**
|
||||
*每页显示的条数
|
||||
*/
|
||||
private Integer pageSize;
|
||||
}
|
|
@ -4,7 +4,7 @@
|
|||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.muyu.cloud.mart.mapper.ConnectorMapper">
|
||||
<update id="updateConnector">
|
||||
update connector set connector_name=#{connectorName},connector_sort=#{connectorSort},connector_describe=#{connectorDescribe},connector_picture=#{connectorPicture},connector_company=#{connectorCompany},connector_time=#{connectorTime},connector_residue_degree=#{connectorResidueDegree},connector_frequency=#{connectorFrequency},connector_address=#{connectorAddress},connector_status=#{connectorStatus} where connector_id=#{connectorId}
|
||||
update connector set connector_name=#{connectorName},connector_sort=#{connectorSort},connector_describe=#{connectorDescribe},connector_picture=#{connectorPicture},connector_company=#{connectorCompany},connector_time=#{connectorTime},connector_residue_degree=#{connectorResidueDegree},connector_frequency=#{connectorFrequency},connector_status=#{connectorStatus} where connector_id=#{connectorId}
|
||||
</update>
|
||||
|
||||
<select id="getDeleteConnector" resultType="java.lang.Integer">
|
||||
|
|
Loading…
Reference in New Issue