29 lines
505 B
Java
29 lines
505 B
Java
package com.kexue.skills.entity.dto;
|
|
|
|
import com.kexue.skills.entity.base.BaseQueryDto;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* (Supplier)查询DTO类
|
|
*
|
|
* @author 王志维
|
|
* @since 2025-02-21 23:01:48
|
|
*/
|
|
@Data
|
|
public class SupplierDto extends BaseQueryDto {
|
|
|
|
private Long supplierId;
|
|
|
|
private String supplierName;
|
|
|
|
private String contactPerson;
|
|
|
|
private String contactPhone;
|
|
|
|
private String address;
|
|
|
|
private Integer enable;
|
|
|
|
private Integer deleteFlag;
|
|
|
|
} |