MonthManure.java 482 Bytes
Newer Older
licc's avatar
licc committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
package cn.wisenergy.model.app;

import lombok.Data;

import java.util.Date;

/**
*@ Description: 月度肥料实体类
*@ Author     : 86187
*@ Date       : 2021/3/10 10:05
 * @author 86187
 */
@Data
public class MonthManure {
    /**
     * 主键id
     */
    private Integer id;

    /**
     * 年月
     */
    private String yearMonth;

    /**
     * 月度肥料余额
     */
    private Double manureAward;

    private Date createTime;

    private Date updateTime;
}