Files
GEAR-OA/gear-oa/src/main/java/com/gear/oa/domain/GearSalesman.java
2026-05-18 17:48:43 +08:00

53 lines
985 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.gear.oa.domain;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableLogic;
import com.baomidou.mybatisplus.annotation.TableName;
import com.gear.common.core.domain.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* 销售员对象 gear_salesman
*/
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("gear_salesman")
public class GearSalesman extends BaseEntity {
private static final long serialVersionUID = 1L;
/**
* 销售员ID
*/
@TableId(value = "salesman_id")
private Long salesmanId;
/**
* 销售员姓名
*/
private String name;
/**
* 联系电话
*/
private String mobile;
/**
* 状态0正常 1停用
*/
private Integer status;
/**
* 备注
*/
private String remark;
/**
* 删除标志0=正常1=已删除)
*/
@TableLogic
private Integer delFlag;
}