package com.example.erp.entity.sd;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import lombok.Data;
|
|
import java.sql.Date;
|
import java.time.LocalDate;
|
|
@Data
|
public class Returns {
|
@TableId(type = IdType.AUTO)
|
|
private Long id;
|
private Integer returnsState;
|
private Integer warehousingState;
|
private String returnsId;
|
private String deliveryId;
|
private String project;
|
private Long customerId;
|
private String customerName;
|
private LocalDate returnsDate;
|
private String returnsMethod;
|
private String salaManId;
|
private String salaMan;
|
private String createrId;
|
private String creator;
|
private Double area;
|
private Integer quantity;
|
private Double money;
|
private String remarks;
|
private LocalDate createTime;
|
private LocalDate updateTime;
|
|
private Delivery delivery;
|
private Customer customer;
|
|
}
|