Files
klp-oa/klp-wms/src/main/java/com/klp/domain/vo/WmsCostStandardConfigVo.java
2025-12-03 10:32:06 +08:00

81 lines
1.5 KiB
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.klp.domain.vo;
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
import java.math.BigDecimal;
import java.time.LocalDate;
/**
* 成本标准配置表视图对象 wms_cost_standard_config
*
* @author klp
* @date 2025-11-25
*/
@Data
@ExcelIgnoreUnannotated
public class WmsCostStandardConfigVo {
/**
* 主键ID
*/
@ExcelProperty(value = "配置ID")
private Long configId;
/**
* 单位成本(元/吨/天)
*/
@ExcelProperty(value = "单位成本(元/吨/天)")
private BigDecimal unitCost;
/**
* 生效日期
*/
@ExcelProperty(value = "生效日期")
private LocalDate effectiveDate;
/**
* 失效日期NULL表示当前有效
*/
@ExcelProperty(value = "失效日期")
private LocalDate expireDate;
/**
* 状态0=失效1=有效)
*/
@ExcelProperty(value = "状态")
private Integer status;
/**
* 备注说明
*/
@ExcelProperty(value = "备注")
private String remark;
/**
* 创建人
*/
@ExcelProperty(value = "创建人")
private String createBy;
/**
* 创建时间
*/
@ExcelProperty(value = "创建时间")
private java.util.Date createTime;
/**
* 更新人
*/
@ExcelProperty(value = "更新人")
private String updateBy;
/**
* 更新时间
*/
@ExcelProperty(value = "更新时间")
private java.util.Date updateTime;
}