| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import org.hibernate.validator.constraints.Length; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | |
| | | @TableField("user_name") |
| | | private String userName; |
| | | |
| | | @Length(max = 11, message = "手机号长度不能超过11个字符") |
| | | @ApiModelProperty(value = "电话") |
| | | @TableField("phone") |
| | | private String phone; |
| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import org.hibernate.validator.constraints.Length; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | |
| | | @TableField("person_charge_name") |
| | | private String personChargeName; |
| | | |
| | | @Length(max = 11, message = "手机号长度不能超过11个字符") |
| | | @ApiModelProperty(value = "联系电话") |
| | | @TableField("phone") |
| | | private String phone; |
| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import org.hibernate.validator.constraints.Length; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | |
| | | @TableField("salesperson_name") |
| | | private String salespersonName; |
| | | |
| | | @Length(max = 11, message = "手机号长度不能超过11个字符") |
| | | @ApiModelProperty(value = "手机号") |
| | | @TableField("phone") |
| | | private String phone; |
| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import org.hibernate.validator.constraints.Length; |
| | | |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | |
| | | @TableField("supplier_contact") |
| | | private String supplierContact; |
| | | |
| | | @Length(max = 11, message = "手机号长度不能超过11个字符") |
| | | @ApiModelProperty(value = "联系电话") |
| | | @TableField("phone") |
| | | private String phone; |
| | | |
| | | @Length(max = 40, message = "账号长度不能超过40个字符") |
| | | @ApiModelProperty(value = "账号") |
| | | @TableField("account") |
| | | private String account; |
| | |
| | | |
| | | <select id="pageList" resultType="com.ruoyi.system.vo.SysUserVO"> |
| | | select u.user_id AS userId, u.dept_id AS deptId, u.user_name AS userName, u.nick_name AS nickName, u.email AS email, u.avatar AS avatar, |
| | | u.disable_remark AS disableRemark,u.phonenumber AS phonenumber, u.sex AS sex, u.status AS status, u.del_flag AS delFlag, |
| | | u.login_ip AS loginIp,u.operating_time AS operatingTime,u.operating_person AS operatingPerson,u.role_type as roleType, |
| | | u.login_date AS loginDate, u.create_by AS createBy, u.create_time AS createTime, u.remark AS remark,u.ifBlack AS ifBlack, u.districtId AS districtId, |
| | | u.phonenumber AS phonenumber, u.sex AS sex, u.status AS status, u.del_flag AS delFlag, |
| | | u.login_ip AS loginIp,u.role_type as roleType,u.login_date AS loginDate, u.create_by AS createBy, |
| | | u.create_time AS createTime, u.remark AS remark,u.ifBlack AS ifBlack, u.districtId AS districtId, |
| | | r.role_id AS roleId, r.role_name AS roleName, r.role_key AS roleKey, r.role_sort AS roleSort, r.data_scope AS dataScope, |
| | | r.status as role_status,u.deptName as deptName |
| | | from sys_user u |